Saturday, 23 September 2017

Hack on your own risk.. and some links not safe becareful

Post oleh : covid-19 | Rilis : September 23, 2017 | Series :

Suneo Ch:
Join👉 @shadow26hackers
How To Hack WPA/WPA2 Wi-Fi With Kali Linux & Aircrack-ng

Kali Linux can be used for many things, but it probably is best known for its ability to penetration test, or “hack,” WPA and WPA2 networks.

There are hundreds of Windows applications that claim they can hack WPA; don’t get them!
They’re just scams, used by professional hackers, to lure newbie or wannabe hackers into getting hacked themselves. There is only one way that hackers get into your network, and that is with a Linux-based OS, a wireless card capable of monitor mode, and aircrack-ng or similar.

Also note that, even with these tools, Wi-Fi cracking is not for beginners. Playing with it requires basic knowledge of how WPA authentication works, and moderate familiarity with Kali Linux and its tools. If you feel you have the necessary skills, let’s begin:

@Hexes_bot
are things that you’ll need:

👉A successful install of Kali Linux

👉A wireless adapter capable of injection/monitor mode.

👉A wordlist to attempt to “crack” the password once it has been captured

👉Time and patience

If you have these then we're ready to set off

@cyberium

Start Kali Linux and login, preferably as root.

Step Two:

Plugin your injection-capable wireless adapter, (Unless your native computer wireless card supports it). If you’re using Kali in VMware, then you might have to connect the card via the icon in the device menu

Step Three:

Disconnect from all wireless networks, open a Terminal, and type airmon-ng

@cyberium

This will list all of the wireless cards that support monitor (not injection) mode. If no cards are listed, try disconnecting and reconnecting the adapter (if you’re using one) and check that it supports monitor mode. If you’re not using an external adapter, and you still don’t see anything listed, then your card doesn’t support monitor mode, and you’ll have to purchase an external one. You can see there👆 that my card supports monitor mode and that it’s listed as wlan0.

@cyberium💯

The “(monitor mode enabled)” message means that the card hasb successfully been put into monitor mode. Note the name of the new monitor interface, mon0.

EDIT:
A bug recently discovered in Kali Linux makes airmon-ng set the channel as a fixed “-1” when you first enable mon0. If you receive this error, or simply do not want to take the chance, follow these steps after enabling mon0:

Type: ifconfig [interface of wireless card] down and hit Enter.
Replace [interface of wireless card] with the name of the interface that you enabled mon0 on; probably called wlan0. This disables the wireless card from connecting to the internet, allowing it to focus on monitor mode instead.
After you have disabled mon0 (completed the wireless section of the tutorial), you’ll need to enable wlan0 (or name of wireless interface), by typing: ifconfig [interface of wireless card] up and pressing Enter.

If you receive a “fixed channel –1” error, see the Edit above👆.

@shadow26hackers

Step Six:

Airodump will now list all of the wireless networks in your area, and a lot of useful information about them. Locate your network or the network that you have permission to penetration test. Once you’ve spotted your network on the ever-populating list, hit Ctrl + C on your keyboard to stop the process. Note the channel of your target network.

@cyberium💯

Step Seven:

Copy the BSSID of the target network.
@cyberium💯

Now type this command:
airodump-ng -c [channel] --bssid [bssid] -w /root/Desktop/ [monitor interface]
Replace [channel] with the channel of your target network. Paste the network BSSID where [bssid] is, and replace [monitor interface] with the name of your monitor-enabled interface, (mon0). The “–w” and file path command specifies a place where airodump will save any intercepted 4-way handshakes (necessary to crack the password). Here we saved it to the Desktop, but you can save it anywhere.

A complete command should look similar this:
airodump-ng -c 10 --bssid 00:14:BF:E0:E8:D5 -w /root/Desktop/ mon0

@cyberium💯

Step Eight:

Airodump with now monitor only the target network, allowing us to capture more specific information about it. What we’re really doing now is waiting for a device to connect or reconnect to the network, forcing the router to send out the four-way handshake that we need to capture in order to crack the password.
Also, four files should show up on your desktop, this is where the handshake will be saved when captured, so don’t delete them!

But we’re not really going to wait for a device to connect, no, that’s not what impatient hackers do. We’re actually going to use another cool-tool that belongs to the aircrack suite called aireplay-ng, to speed up the process. Instead of waiting for a device to connect, hackers can use this tool to force a device to reconnect by sending deauthentication (deauth) packets to one of the networks devices, making it think that it has to reconnect with the network.

Of course, in order for this tool to work, there has to be someone else connected to the network first, so watch the airodump-ng and wait for a client to show up. It might take a long time, or it might only take a second before the first one shows. If none show up after a lengthy wait, then the network might be empty right now, or you’re to far away from the network.

You can see in this picture, that a client has appeared on our network, allowing us to start the next step.

@shadow26hackers

Step Nine:

Leave airodump-ng running and open a second terminal. In this terminal, type this command:
aireplay-ng –0 2 –a [router bssid] –c [client bssid] mon0
The –0 is a short cut for the deauth mode and the 2 is the number of deauth packets to send.
-a indicates the access point/router’s BSSID, replace [router bssid] with the BSSID of the target network, which in my case, is 00:14:BF:E0:E8:D5.
-c indicates the client’s BSSID, the device we’re trying to deauth, noted in the previous picture. Replace the [client bssid] with the BSSID of the connected client, this will be listed under “STATION.”
And of course, mon0 merely means the monitor interface, change it if yours is different.

My complete command looks like this:
aireplay-ng –0 2 –a 00:14:BF:E0:E8:D5 –c 4C:EB:42:59:DE:31 mon0

@cyberium💯

Step Ten:

Upon hitting Enter, you’ll see aireplay-ng send the packets. If you were close enough to the target client, and the deauthentication process works, this message will appear on the airodump screen (which you left open):

@cyberium💯

Now press enter
@cyberium

Step 12:

Aircrack-ng will now launch into the process of cracking the password. However, it will only crack it if the password happens to be in the wordlist that you’ve selected. Sometimes, it’s not. If this is the case, you can try other wordlists. If you simply cannot find the password no matter how many wordlists you try, then it appears your penetration test has failed, and the network is at least safe from basic brute-force attacks.

Cracking the password might take a long time depending on the size of the wordlist. Mine went very quickly.

If the phrase is in the wordlist, then aircrack-ng will show it too you like this:

@cyberium

Step 11:

This concludes the external part of this tutorial. From now on, the process is entirely between your computer, and those four files on your Desktop. Actually, it’s the .cap one, that is important. Open a new Terminal, and type in this command:
aircrack-ng -a2 -b [router bssid] -w [path to wordlist] /root/Desktop/*.cap

-a is the method aircrack will use to crack the handshake, 2=WPA method.
-b stands for bssid, replace [router bssid] with the BSSID of the target router, mine is 00:14:BF:E0:E8:D5.
-w stands for wordlist, replace [path to wordlist] with the path to a wordlist that you have downloaded. I have a wordlist called “wpa.txt” in the root folder.
/root/Desktop/*.cap is the path to the .cap file containing the password. The * means wild card in Linux, and since I’m assuming that there are no other .cap files on your Desktop, this should work fine the way it is.

My complete command looks like this:
aircrack-ng –a2 –b 00:14:BF:E0:E8:D5 –w /root/wpa.txt  /root/Desktop/*.cap

@cyberium

This means that the handshake has been captured, the password is in the hacker’s hands, in some form or another. You can close the aireplay-ng terminal and hit Ctrl + C on the airodump-ng terminal to stop monitoring the network, but don’t close it yet just incase you need some of the information later.

If you didn’t receive the “handshake message,” then something went wrong in the process of sending the packets. Unfortunately, a variety of things can go wrong. You might just be too far away, and all you need to do is move closer. The device you’re attempting to deauth might not be set to automatically reconnect, in which case you’ll either have to try another device, or leave airodump on indefinitely until someone or something connects to the network. If you’re very close to the network, you could try a WiFi spoofing tool like wifi-honey, to try to fool the device into thinking that you’re the router. However, keep in mind that this requires that you be significantly closer to the device than the router itself. So unless you happen to be in your victim’s house, this is not recommended.

Do note that, despite your best efforts, there are many WPA networks that simply can’t be cracked by these tools. The network could be empty, or the password could be 64 characters long, etc.
@cyberium

The passphrase to our test-network was “notsecure,” and you can see here that it was in the wordlist, and aircrack found it.

If you find the password without a decent struggle, then change your password, if it’s your network. If you’re penetration testing for someone, then tell them to change their password as soon as possible
If you're penetration for your own use then enjoy

DISCLAIMER: Hacking is illegal, I'll not be held responsible in case or by any means you get caught and be sued.

Success

Resource dump 1: https://github.com/faizann24/Resour...
Resource dump 2: https://github.com/enaqx/awesome-pentest
Linux tutorials https://www.tutorialspoint.com/list...
Linux shell scripting books https://www.tecmint.com/free-linux-...
Infosecbooks to read http://blog.deurainfosec.com/top-ra......
CTF challanges https://cybersecuritychallenge.org.uk/......
OverTheWire wargames http://overthewire.org/wargames/
Lots of other watgames: http://www.wechall.net/
Python tutorials http://www.techbeamers.com/.../pyth...
Programming tutorials https://learncodethehardway.org/
Guidence on the cyber sec industry http://www.cyberdegrees.org/.../tra...
Never ending security blog https://neverendingsecurity.wordpress.com/...
Cyber news: https://thecyberwire.com
Pentest boot camp: https://www.pentesterlab.com/bootcamp
Another repo of links: https://github.com/sindresorhus/awesome
News and tutorials: https://null-byte.wonderhowto.com
RFId hacking: https://www.bishopfox.com/resources/tools/rfid-hacking/attack-tools/
Cybersec News: https://thecyberwire.com/
useful google drive links
Google drive movies - https://drive.google.com/drive/u/0/mobile/folders/0B6FjKMQKynZILTlwZHl4ajUwcFU
Programming language collection on google drive - https://drive.google.com/drive/folders/0ByWO0aO1eI_MN1BEd3VNRUZENkU
Books -
https://drive.google.com/drive/folders/0B0hgUX3me1_RNi1KTXBzXzdXSzA
Google drive hacking ebook collection - https://drive.google.com/drive/folders/0B-JzQsKoJaANbTFGN0RWLWhONms
Books for reading - https://drive.google.com/drive/folders/0B09qtt10aqV1SGxRVXBWYmNIS2M
Books (novels) - https://drive.google.com/drive/folders/0B1v9Iy1jH3FXdlNDeUNHNEVsZlE
Books - https://drive.google.com/drive/folders/0B1Ef5shqGHDNRGEwd3BYb0N3Um8
C programming tutorial google drive - https://drive.google.com/drive/folders/0B1qoi1IlEKwaM2tSMFBmOGUyNzg
Udemy course google drive link - https://drive.google.com/drive/folders/0B1HQDi7EkA9XNlR3STF5SVJIVUk
Programming books google drive - https://drive.google.com/drive/folders/0B2iEK7PB5AR-b01obXBHWHVHQzg
Linux books - https://drive.google.com/drive/folders/0B1Wzf8eTK3LTYWtqOGlnQldTV2c
4K wallpaper google drive - https://drive.google.com/drive/folders/0Bx2Vez2N3qd7SGxkejRhQmdKQlk
https://drive.google.com/drive/folders/0B2VhgL11XGQoamJCNGprcUJ2Zms
Books for reading - https://drive.google.com/drive/folders/0B_qpgvDTe8kraTQ2QkM2S19tQWs
Books - https://drive.google.com/drive/folders/0B4PtWlBoZ1rVSncxbi1JVFY4anM
Best collection google drive - https://drive.google.com/drive/folders/0B3Qd1rlyIyR5bHo0dENpM1lSclk
Banking exam preparation papers - https://drive.google.com/drive/folders/0B079Cm0MfQeyS3R5cHVnb2RVUU0
Learning awareness banking lecture - https://drive.google.com/drive/folders/0B8CnCCd60bnzM3VSWFhKZ2Rzc2s
Head first programming book collection - https://drive.google.com/drive/folders/0B1W3DeV5S5BELXZRajkteW83WHM
IBPS book collection for banking - https://drive.google.com/drive/folders/0B4xFnW1qvXXgZnVkaUVEX2w4Zzg
Reading material - https://drive.google.com/drive/folders/0Bx_3I5qjqu3rSVBWMHpjLVRoREE
300 medical books - https://drive.google.com/drive/folders/0BzQUrkcZOjAiYmQ0NTBjZmMtMDJjMS00OWViLTk0NWEtYTFhYzE2ZTZmYzdk
[Udemy] the complete digital marketing course - https://drive.google.com/drive/folders/0B-M90IqpPfRHNXZ6SkdMQlZOUkk
Arduino step by step - https://drive.google.com/drive/folders/0B0TIoKgqQ9p5WC1pV2I0aHlKamc
All type books - https://drive.google.com/drive/folders/0B1dv5sqSPsPbfk1ZSXNud1pvWl9BV2Franh2ZFl0S0hweTBhT3QyNFUxWGgzQkFpOGUtd0k
Mechanical engineering books - https://drive.google.com/drive/folders/0B1k2RCDnejGvNFZWTWhJeDctWDQ
Study books - https://drive.google.com/drive/folders/0B6hG9OOiP0g2Zkh4M2x3WnVJNWs
English - https://drive.google.com/drive/folders/0B5xOSW6DBC5LfkVZWTJqYUZOblgyQnlhSlc2U1RJWUFyWjBnUXc0dHlrTHR5dEUySXNYc0E
English grammer - https://drive.google.com/drive/folders/0B1_NUA4_UggJYUIwc09LX1dfcDA
GMAT, GRE, TOEFL, IELTS & LSAT - https://drive.google.com/drive/folders/0B2jZERjUXCHhZnB5T0tpY2ZyRmc
Html essential training - https://drive.google.com/drive/folders/0B3LfaGUUk6tiT18xZDRBY

1FCVXc
Lynda courses - https://drive.google.com/drive/folders/0B5eJ2fw2iba1UlZna0FUWXF4UFU
Mathematics - https://drive.google.com/drive/folders/0BzeyVSBfx9yaWUMtUXZNLU9kM0k
Php development course - https://drive.google.com/drive/folders/0ByWO0aO1eI_MV0lhX1dkUlQ3YUk
Programming books - https://drive.google.com/drive/folders/0B2iEK7PB5AR-b01obXBHWHVHQzg
-🇮🇳 *LINK INDIA NGO*🇮🇳
🔴🔴Web Sites For IT Training 🔴🔴

Programming, Web Development, Networking

and More

**************************

***********************************

1. www.codecademy.com 

2. www.lynda.com 

3. www.udemy.com 

4. www.udacity.com 

5. www.coursera.org 

6. www.w3schools.com 7. www.thenewboston.org 

8. www.programmr.com 

9. www.codeavengers.com 

10. www.codeschool.com 11. www.learnstreet.com12. www.teamtreehouse.com 

13. www.sqlzoo.net 14. www.codehs.com 15. www.teamtreehouse.com 

16. www.html5rocks.com 17. www.codepen.io 18. www.sitepoint.com 19. www.tutorialspoint.com 

20. www.javatpoint.com 21. www.cplusplus.com 22. www.learncpp.com 23. www.tutorialspoint.com 

24. www.cprogramming.com 

25. www.stackoverflow.com 

26. www.learncodethehardway.org 

27. www.bloc.io 

28. www.howtocode.io 29. www.edx.org 

30. www.instructables.com 

31. www.developer.apple.com 

32. www.developer.android.com 

33. www.developers.google.com 

34. www.developer.mozilla.org 

35. www.msdn.microsoft.com 

36. www.dev.opera.com 37. www.www.developphp.com 

38. www.quackit.com 39. www.htmlite.com 40. www.siteduzero.com 41. www.dreamincode.net 42. www.phpbuddy.com 43. www.php.net 

44. www.microsoftvirtualacademy.com 

45. www.professormesser.com .

.

Photoshop and Graphics

***************************

1. www.adobe.com 2. www.adobeknowhow.com 3. www.pixel2life.com 4. www.photoshopessentials.com5. www.photoshop-tutorials.deviantart.com 6. www.phlearn.com 7. www.design.tutsplus.com 8. www.practicalphotoshopmag.com 9. www.tutorial9.net 10. www.pshero.com 11. www.psdlearning.com 12. www.alison.com .

.

Programing and Other IT Projects

*************************************

1. www.freeprojectscode.com 2. www.sourcecodesworld.com 3. www.freecode.com 4. www.codeproject.com 5. www.freestudentprojects.com 6. www.programmersheaven.com 7. www.code.google.com 8. www.planet-source-code.com 9. www.dzone.com 10. www.thefreecountry.com 11. www.sourceforge.net12. www.creately.com/diagram-examples 13. www.freewebsitetemplates.com 14. www.templatemo.com 15. www.oswd.org 16. www.designrazzi.net/2014/free-css3-html5-templates 17. www.html5up.net 18. www.freehtml5templates.com 19. www.themesbase.com/WordPress-Templates 20. www.templaty.com 21. www.arblogger-templates.com 22. www.templates.ssdaa.com .

.

Create a Prefessional CV Online

************************************

1. www.khamsat.com 2. www.fiverr.com 3. www.odesk.com 4. www.elance.com 5. www.99designs.com 6. www.freelancer.com 7. www.guru.com 8. www.jobs.smashingmagazine.com9. www.freelanced.com 10. www.ifreelance.com 11. www.peopleperhour.com 12 www.peopleperhour.com.

.

Very Good Sites for Freelancers

************************************

1. www.khamsat.com 2. www.fiverr.com 3. www.odesk.com 4. www.elance.com 5. www.99designs.com 6. www.freelancer.com 7. www.guru.com 8. www.jobs.smashingmagazine.com9. www.freelanced.com 10. www.ifreelance.com 11. www.peopleperhour.com 12 www.peopleperhour.com
https://www.udemy.com/ruby-tutorial-for-beginners/?pmtag=UDEMAY103
⁠⁠⁠All About Programming  All PDFS
https://drive.google.com/drive/folders/0B-naBPVFnJB-OEw1U3VzTGVTTk0
http://index-of.co.uk

Huge archive of hacking and programming tutorials 😱😱😱
Python Books
https://drive.google.com/folderview?id=0B-naBPVFnJB-TDJ4NFFrQWdpLW8
Complete HTML5 and CSS3-      https://drive.google.com/folderview?id=0BxgVsNcdME07U25SNmlEWWNqOVk
https://androidttrl.blogspot.in/2017/07/udemy-piad-hacking-courses-for-free.html?m=1
https://codenvy.io/site/login?redirect_url=https%3A%2F%2Fcodenvy.io%2F#
https://www.tutorialspoint.com/python/index.htm
https://www.tutorialspoint.com/python3/index.htm
https://www.tutorialspoint.c

om/python_pandas/index.htm
https://www.tutorialspoint.com/wxpython/index.htm
*13 TB collections, you might require*

*BOOKMARK THIS*

Google drive movies - https://drive.google.com/drive/u/0/mobile/folders/0B6FjKMQKynZILTlwZHl4ajUwcFU
Programming language collection on google drive - https://drive.google.com/drive/folders/0ByWO0aO1eI_MN1BEd3VNRUZENkU
Books -
https://drive.google.com/drive/folders/0B0hgUX3me1_RNi1KTXBzXzdXSzA
Google drive hacking ebook collection - https://drive.google.com/drive/folders/0B-JzQsKoJaANbTFGN0RWLWhONms
Books for reading - https://drive.google.com/drive/folders/0B09qtt10aqV1SGxRVXBWYmNIS2M
Books (novels) - https://drive.google.com/drive/folders/0B1v9Iy1jH3FXdlNDeUNHNEVsZlE
Books - https://drive.google.com/drive/folders/0B1Ef5shqGHDNRGEwd3BYb0N3Um8
C programming tutorial google drive - https://drive.google.com/drive/folders/0B1qoi1IlEKwaM2tSMFBmOGUyNzg
Udemy course google drive link - https://drive.google.com/drive/folders/0B1HQDi7EkA9XNlR3STF5SVJIVUk
Programming books google drive - https://drive.google.com/drive/folders/0B2iEK7PB5AR-b01obXBHWHVHQzg
Linux books - https://drive.google.com/drive/folders/0B1Wzf8eTK3LTYWtqOGlnQldTV2c
4K wallpaper google drive - https://drive.google.com/drive/folders/0Bx2Vez2N3qd7SGxkejRhQmdKQlk
https://drive.google.com/drive/folders/0B2VhgL11XGQoamJCNGprcUJ2Zms
Books for reading - https://drive.google.com/drive/folders/0B_qpgvDTe8kraTQ2QkM2S19tQWs
Books - https://drive.google.com/drive/folders/0B4PtWlBoZ1rVSncxbi1JVFY4anM
Best collection google drive - https://drive.google.com/drive/folders/0B3Qd1rlyIyR5bHo0dENpM1lSclk
Banking exam preparation papers - https://drive.google.com/drive/folders/0B079Cm0MfQeyS3R5cHVnb2RVUU0
Learning awareness banking lecture - https://drive.google.com/drive/folders/0B8CnCCd60bnzM3VSWFhKZ2Rzc2s
Head first programming book collection - https://drive.google.com/drive/folders/0B1W3DeV5S5BELXZRajkteW83WHM
IBPS book collection for banking - https://drive.google.com/drive/folders/0B4xFnW1qvXXgZnVkaUVEX2w4Zzg
Reading material - https://drive.google.com/drive/folders/0Bx_3I5qjqu3rSVBWMHpjLVRoREE
300 medical books - https://drive.google.com/drive/folders/0BzQUrkcZOjAiYmQ0NTBjZmMtMDJjMS00OWViLTk0NWEtYTFhYzE2ZTZmYzdk
[Udemy] the complete digital marketing course - https://drive.google.com/drive/folders/0B-M90IqpPfRHNXZ6SkdMQlZOUkk
Arduino step by step - https://drive.google.com/drive/folders/0B0TIoKgqQ9p5WC1pV2I0aHlKamc
All type books - https://drive.google.com/drive/folders/0B1dv5sqSPsPbfk1ZSXNud1pvWl9BV2Franh2ZFl0S0hweTBhT3QyNFUxWGgzQkFpOGUtd0k
Mechanical engineering books - https://drive.google.com/drive/folders/0B1k2RCDnejGvNFZWTWhJeDctWDQ
Study books - https://drive.google.com/drive/folders/0B6hG9OOiP0g2Zkh4M2x3WnVJNWs
English - https://drive.google.com/drive/folders/0B5xOSW6DBC5LfkVZWTJqYUZOblgyQnlhSlc2U1RJWUFyWjBnUXc0dHlrTHR5dEUySXNYc0E
English grammer - https://drive.google.com/drive/folders/0B1_NUA4_UggJYUIwc09LX1dfcDA
GMAT, GRE, TOEFL, IELTS & LSAT - https://drive.google.com/drive/folders/0B2jZERjUXCHhZnB5T0tpY2ZyRmc
Html essential training - https://drive.google.com/drive/folders/0B3LfaGUUk6tiT18xZDRBY1FCVXc
Lynda courses - https://drive.google.com/drive/folders/0B5eJ2fw2iba1UlZna0FUWXF4UFU
Mathematics - https://drive.google.com/drive/folders/0BzeyVSBfx9yaWUMtUXZNLU9kM0k
Php development course - https://drive.google.com/drive/folders/0ByWO0aO1eI_MV0lhX1dkUlQ3YUk
Programming books - https://drive.google.com/drive/folders/0B2iEK7PB5AR-b01obXBHWHVHQzg

Enjoy 👍🏼
*Hacking books*
1. http://www.mediafire.com/download/u2akquvibe6ia13/Hackers+High+School+13+Complete+Hacking+E-books.rar 

2. http://www.mediafire.com/download/u2akquvibe6ia13/Hackers+High+School+13+Complete+Hacking+E-books.rar 

3. http://www.mediafire.com/download/88gf6qjjic8q1m3/Penentration+Testing+With+Backtrack+5.zip 

4. http://www.mediafire.com/file/dyewn6f3r3olnuw/A+Beginners+Guide+To+Hacking+Computer+Systems.zip 

5. http://www.mediafire.com/download/c8ilcobmyiqooyp/Black+Book+of+Viruses+and+Hacking.zip 

6. http://www.mediafire.com/file/2sspb36u5gymd23/Secrets+of+Super+

and+Professional+Hackers.zip 

7. http://www.mediafire.com/file/s3535s2yg1w26u7/Dangerours+Google+Hacking+Database+and+Attacks.zip 

8. http://www.mediafire.com/file/b4jmyl022rh48c0/Internet+Advanced+Denial+of+Service+%28DDOS%29+Attack.zip 

9. http://www.mediafire.com/file/8derf9dueyq64i5/Computer+Viruses%2C+Hacking+and+Malware+attacks+for+Dummies.zip 

10. http://www.mediafire.com/file/8derf9dueyq64i5/Computer+Viruses%2C+Hacking+and+Malware+attacks+for+Dummies.zip

google+

linkedin

Cyber Ghost. Powered by Blogger.