Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Researchers Identify 3 Hacktivist Groups Supporting?
https://cdn-images-1.medium.com/max/728/0*O6FFlb48mlktgUx4.jpg
At least three alleged hacktivist groups working in support of Russian interests are likely doing so in collaboration with state-sponsored…
Continue reading on Medium »
Researchers Identify 3 Hacktivist Groups Supporting?
https://cdn-images-1.medium.com/max/728/0*O6FFlb48mlktgUx4.jpg
At least three alleged hacktivist groups working in support of Russian interests are likely doing so in collaboration with state-sponsored…
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
10 Deadliest Computer Viruses You Wish Didn’t Exist.
https://cdn-images-1.medium.com/max/640/1*6lIv6nEnkd2MPEL6YP-rkQ.jpeg
Has your computer even been attacked by a computer virus? Do you have malware detection and protection installed on your computer? Or like…
Continue reading on Medium »
10 Deadliest Computer Viruses You Wish Didn’t Exist.
https://cdn-images-1.medium.com/max/640/1*6lIv6nEnkd2MPEL6YP-rkQ.jpeg
Has your computer even been attacked by a computer virus? Do you have malware detection and protection installed on your computer? Or like…
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Linux is no more safe as you think.
https://cdn-images-1.medium.com/max/744/1*cNuVMoqvzxNYbeUKOFOEJg.jpeg
Ransomware attacks that target Linux are increasing as cybercriminals want to broaden their options by focusing their attention on an…
Continue reading on Medium »
Linux is no more safe as you think.
https://cdn-images-1.medium.com/max/744/1*cNuVMoqvzxNYbeUKOFOEJg.jpeg
Ransomware attacks that target Linux are increasing as cybercriminals want to broaden their options by focusing their attention on an…
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Chinese Espionage Hackers Target Tibetans?
https://cdn-images-1.medium.com/max/1200/0*KATcDHngEtvoA1iu
A China-aligned advanced persistent threat actor known as TA413 weaponized recently disclosed flaws in Sophos Firewall and Microsoft…
Continue reading on Medium »
Chinese Espionage Hackers Target Tibetans?
https://cdn-images-1.medium.com/max/1200/0*KATcDHngEtvoA1iu
A China-aligned advanced persistent threat actor known as TA413 weaponized recently disclosed flaws in Sophos Firewall and Microsoft…
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
TryHackMe Startup Walkthrough (Step by Step)
https://cdn-images-1.medium.com/max/1121/1*3h_vW5Fjd-dYE85OTRJvVw.png
This is a walkthrough of the TryHackMe challenge ‘Startup’. This practice test is considered easy according to THM so let’s explore and…
Continue reading on Medium »
TryHackMe Startup Walkthrough (Step by Step)
https://cdn-images-1.medium.com/max/1121/1*3h_vW5Fjd-dYE85OTRJvVw.png
This is a walkthrough of the TryHackMe challenge ‘Startup’. This practice test is considered easy according to THM so let’s explore and…
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Mitmproxy and Kubernetes
https://cdn-images-1.medium.com/max/2600/1*G8RbErO2MznCS3gL0ByEtA.png
Solving the untrusted certificate issues in pods !!
Continue reading on Medium »
Mitmproxy and Kubernetes
https://cdn-images-1.medium.com/max/2600/1*G8RbErO2MznCS3gL0ByEtA.png
Solving the untrusted certificate issues in pods !!
Continue reading on Medium »
Kali Linux Tutorials
EyeWitness : Take Screenshots Of Websites
EyeWitness is designed to take screenshots of websites provide some server header info, and identify default credentials if known.
EyeWitness is designed to run on Kali Linux. It will auto detect the file you give it with the -f flag as either being a text file with URLs on each new line, nmap xml output, or nessus xml output. The –timeout flag is completely optional, and lets you provide the max time to wait when trying to render and screenshot a web page.
A complete usage guide which documents EyeWitness features and its typical use cases is available here – https://www.christophertruncer.com/eyewitness-2-0-release-and-user-guide/
Windows
FortyNorth Security has created a Windows client (thanks to the massive help of Matt Grandy (@Matt_Grandy_) with the stability fixes). All you need to do is build it locally (or check the releases), and then provide a path to a file containing the URLs you want scanned! EyeWitness will generate the report within your “AppData\Roaming” directory. The latest version of the C# EyeWitness supports parsing and taking screenshots of Internet Explorer and Chrome bookmarks without having to supply a list of URLs. This version is also small enough to be delivered through Cobalt Strike’s execute-assembly.
Setup
* Navigate into the CS directory
* Load EyeWitness.sln into Visual Studio
* Go to Build at the top and then Build Solution if no modifications are wanted
Usage
EyeWitness.exe –help
EyeWitness.exe –bookmarks
EyeWitness.exe -f C:\Path\to\urls.txt
EyeWitness.exe –file C:\Path\to\urls.txt –delay [timeout in seconds] –compress
Linux
Supported Linux Distros
* Kali Linux
* Debian 7+ (at least stable, looking into testing) (Thanks to @themightyshiv)
* CentOS 7
* Rocky Linux 8
E-Mail: EyeWitness [@] christophertruncer [dot] com
Setup
* Navigate into the Python/setup directory
* Run the setup.sh script
Usage
./EyeWitness.py -f filename –timeout optionaltimeout
Examples
./EyeWitness -f urls.txt –web
./EyeWitness -x urls.xml –timeout 8
./EyeWitness.py -f urls.txt –web –proxy-ip 127.0.0.1 –proxy-port 8080 –proxy-type socks5 –timeout 120
Proxy Usage
The best guide for proxying EyeWitness through a socks proxy was made by @raikia and is available here – #458
To install EyeWitness from a system while needing to go through a proxy, the following commands (thanks to @digininja) can be used.
Docker
Now you can execute EyeWitness in a docker container and prevent you from install unnecessary dependencies in your host machine.
Note: execute docker run with the folder path in the host which hold your results (/path/to/results)
Note2: in case you want to scan urls from a file, make sure you put it in the volume folder (if you put urls.txt in /path/to/results, then the argument should be -f /tmp/EyeWitness/urls.txt)
Download
EyeWitness : Take Screenshots Of Websites
EyeWitness is designed to take screenshots of websites provide some server header info, and identify default credentials if known.
EyeWitness is designed to run on Kali Linux. It will auto detect the file you give it with the -f flag as either being a text file with URLs on each new line, nmap xml output, or nessus xml output. The –timeout flag is completely optional, and lets you provide the max time to wait when trying to render and screenshot a web page.
A complete usage guide which documents EyeWitness features and its typical use cases is available here – https://www.christophertruncer.com/eyewitness-2-0-release-and-user-guide/
Windows
FortyNorth Security has created a Windows client (thanks to the massive help of Matt Grandy (@Matt_Grandy_) with the stability fixes). All you need to do is build it locally (or check the releases), and then provide a path to a file containing the URLs you want scanned! EyeWitness will generate the report within your “AppData\Roaming” directory. The latest version of the C# EyeWitness supports parsing and taking screenshots of Internet Explorer and Chrome bookmarks without having to supply a list of URLs. This version is also small enough to be delivered through Cobalt Strike’s execute-assembly.
Setup
* Navigate into the CS directory
* Load EyeWitness.sln into Visual Studio
* Go to Build at the top and then Build Solution if no modifications are wanted
Usage
EyeWitness.exe –help
EyeWitness.exe –bookmarks
EyeWitness.exe -f C:\Path\to\urls.txt
EyeWitness.exe –file C:\Path\to\urls.txt –delay [timeout in seconds] –compress
Linux
Supported Linux Distros
* Kali Linux
* Debian 7+ (at least stable, looking into testing) (Thanks to @themightyshiv)
* CentOS 7
* Rocky Linux 8
E-Mail: EyeWitness [@] christophertruncer [dot] com
Setup
* Navigate into the Python/setup directory
* Run the setup.sh script
Usage
./EyeWitness.py -f filename –timeout optionaltimeout
Examples
./EyeWitness -f urls.txt –web
./EyeWitness -x urls.xml –timeout 8
./EyeWitness.py -f urls.txt –web –proxy-ip 127.0.0.1 –proxy-port 8080 –proxy-type socks5 –timeout 120
Proxy Usage
The best guide for proxying EyeWitness through a socks proxy was made by @raikia and is available here – #458
To install EyeWitness from a system while needing to go through a proxy, the following commands (thanks to @digininja) can be used.
Docker
Now you can execute EyeWitness in a docker container and prevent you from install unnecessary dependencies in your host machine.
Note: execute docker run with the folder path in the host which hold your results (/path/to/results)
Note2: in case you want to scan urls from a file, make sure you put it in the volume folder (if you put urls.txt in /path/to/results, then the argument should be -f /tmp/EyeWitness/urls.txt)
Download
Kali Linux Tutorials
EyeWitness : Take Screenshots Of Websites Kali Linux
EyeWitness is designed to take screenshots of websites provide some server header info, and identify default credentials if known.
hacking: security in practice
how much knowledge should you have about windows in order to be able to write exploits and malware?
I am pretty sure you need to have some knowledge of how windows work under the hood in order to be able to write exploits or develop malware ( or understand how malware work to be able to reverse it ) or am I totally wrong? anyway, if I am not wrong, what should I learn about windows?
submitted by /u/Fuck_Life_421
[link] [comments]
how much knowledge should you have about windows in order to be able to write exploits and malware?
I am pretty sure you need to have some knowledge of how windows work under the hood in order to be able to write exploits or develop malware ( or understand how malware work to be able to reverse it ) or am I totally wrong? anyway, if I am not wrong, what should I learn about windows?
submitted by /u/Fuck_Life_421
[link] [comments]
reddit
how much knowledge should you have about windows in order to be...
I am pretty sure you need to have some knowledge of how windows work under the hood in order to be able to write exploits or develop malware ( or...
hacking: security in practice
Anyone way to see the servers someone is in?
Was just wondering if there was a hack to let you see every server someone is in.
submitted by /u/Lucky-Selection-10
[link] [comments]
Anyone way to see the servers someone is in?
Was just wondering if there was a hack to let you see every server someone is in.
submitted by /u/Lucky-Selection-10
[link] [comments]
reddit
Anyone way to see the servers someone is in?
Was just wondering if there was a hack to let you see every server someone is in.
hacking: security in practice
How did you learn to hack?
What's your story? How did you get started?
submitted by /u/Notalabel_4566
[link] [comments]
How did you learn to hack?
What's your story? How did you get started?
submitted by /u/Notalabel_4566
[link] [comments]
Reddit
From the hacking community on Reddit
Explore this post and more from the hacking community
hacking: security in practice
Is it possible to track down a stolen phone?
I know this has probably been asked a million times already.. but lemme ask for one more time again please. Is it possible to track down a stolen phone at all? Wether using the IMEI number or else? Brother just got threatened and everything got took from him.
submitted by /u/AbdulazizThabet
[link] [comments]
Is it possible to track down a stolen phone?
I know this has probably been asked a million times already.. but lemme ask for one more time again please. Is it possible to track down a stolen phone at all? Wether using the IMEI number or else? Brother just got threatened and everything got took from him.
submitted by /u/AbdulazizThabet
[link] [comments]
reddit
Is it possible to track down a stolen phone?
I know this has probably been asked a million times already.. but lemme ask for one more time again please. Is it possible to track down a stolen...
Wassup bug hunters! 🚀Continue reading on Medium » (https://medium.com/@capturethebugs/tools-for-bug-bounty-2d2a7b0db772?source=rss------bug_bounty-5)