Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.8K photos
15 videos
157 files
132K links
Exploit
Pentesting
Hacking
Red Team
Blue Team
Kali Linux
Bug Bounty
Black Hat
Cyber security etc

@Hacking_Video
@Hacking_attack
Download Telegram
hacking: security in practice
Clonbrowser Review

Looking for a clonbrowser review maybe looking to but it for geolocation spoofing and e-commerce management a review for anyone who has bought it.

submitted by /u/Mahomeboi1595
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
Jfscan : A Super Fast And Customisable Port Scanner, Based On Masscan And NMap

JFScan (Just Fu*king Scan) is a wrapper around a super-fast port scanner Masscan. It’s designed to simplify work when scanning for open ports on targets in a variety of formats. The JFScan accepts a target in the following forms: URL, domain, or IP (including CIDR). You can specify a file with targets using argument or use stdin.

The JFScan also allows you to output only the results and chain it with other tools like Nuclei. The domain:port output of JFScan is crucial if you want to discover vulnerabilities in web applications as the virtual host decides which content will be served.

Finally, it can scan discovered ports with Nmap. You can also define custom options and use Nmap’s amazing scripting capabilities. Features* Perform a large-scale scans using Nmap! Allows you to use Masscan to scan targets and execute Nmap on detected ports with custom settings. Nmap on steroids. *
* Scans targets in variety of formats, including domain names!
* Results can be produced in domain:port format.
* It works in stdin/stdout mode, allowing you to stream results to/from other tools.
* Auto-adjusts a packet rate for masscan so you don’t have to (disable it by –disable-auto-rate).
* Produces a standard Nmap XML report.
* Fully supports IPv6.
* Supports scope control, only targets defined in scope will be scanned. Usageusage: jfscan [-h] [–targets TARGETS] (-p PORTS | –top-ports TOP_PORTS | –yummy-ports) [–resolvers RESOLVERS] [–enable-ipv6] [–scope SCOPE] [-r MAX_RATE] [–wait WAIT] [–disable-auto-rate] [-i INTERFACE] [–source-ip SOURCE_IP]
[–router-ip ROUTER_IP] [–router-mac ROUTER_MAC] [–router-mac-ipv6 ROUTER_MAC_IPV6] [-oi] [-od] [-o OUTPUT] [-q | -v] [–nmap] [–nmap-options NMAP_OPTIONS] [–nmap-threads NMAP_THREADS] [–nmap-output NMAP_OUTPUT] [–version]
[target]
JFScan – Just Fu*king Scan
optional arguments:
-h, –help show this help message and exit
-p PORTS, –ports PORTS
ports, can be a range or port list: 0-65535 or 22,80,100-500,…
–top-ports TOP_PORTS
scan only N of the top ports, e. g., –top-ports 1000
–yummy-ports scan only for the most yummy ports
-q, –quite output only results
-v, –verbose verbose output
–nmap run nmap on discovered ports
–nmap-options NMAP_OPTIONS
nmap arguments, e. g., –nmap-options=’-sV’ or –nmap-options=’-sV –script ssh-auth-methods’
–nmap-threads NMAP_THREADS
number of nmaps to run concurrently, default 8
–nmap-output NMAP_OUTPUT
output results from nmap to specified file in standard XML format (same as nmap option -oX)
target a target or targets separated by a comma, accepted form is: domain name, IPv4, IPv6, URL
–targets TARGETS file with targets, accepted form is: domain name, IPv4, IPv6, URL
-oi, –only-ips output only IP adresses, default: all resources
-od, –only-domains output only domains, default: all resources
-o OUTPUT, –output OUTPUT
output masscan’s results to specified file
–resolvers RESOLVERS
custom resolvers separated by a comma, e. g., 8.8.8.8,1.1.1.1
–enable-ipv6 enable IPv6 support, otherwise all IPv6 addresses will be ignored in the scanning process
–scope SCOPE file path with IP adresses and CIDRs to control scope, expected format: IPv6, IPv4, IPv6 CIDR, IPv4 CIDR
-r MAX_RATE, –max-rate MAX_RATE
max kpps rate for the masscan
–wait WAIT a number of seconds to wait for packets to arrive (when scanning large networks), option for the masscan
–disable-auto-rate disable rate adjustment mechanism for masscan (more false positives/negatives)
-i INTERFACE, –interface INTERFACE
interface for masscan and nmap to use
–source-ip SOURCE_IP
IP address of your interface for the masscan
–router-ip ROUTER_IP
IP address of your router for the masscan
–router-mac ROUTER_MAC
MAC address of your router for the masscan
–router-mac-ipv6 ROUTER_MAC_IPV6
MAC address of your IPv6 router for the masscan
–version show program’s versio[...]

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Kali Linux Tutorials Jfscan : A Super Fast And Customisable Port Scanner, Based On Masscan And NMap JFScan (Just Fu*king Scan) is a wrapper around a super-fast port scanner Masscan. It’s designed to simplify work when scanning for open ports on targets in…
n number and exit

Please follow installation instructions before running. Do not run the JFScan under a root, it’s not needed since we set a special permissions on the masscan binary. ExampleScan targets for only for ports 80 and 443 with rate of 10 kpps: $ jfscan -p 80,443 --targets targets.txt -r 10000Scan targets for top 1000 ports : $ jfscan --top-ports 1000 1.1.1.1/24You can also specify targets on stdin and pipe it to nuclei: $ cat targets.txt | jfscan --top-ports 1000 -q | httpx -silent | nucleiOr as positional parameter: $ jfscan --top-ports 1000 1.1.1.1/24 -q | httpx -silent | nucleiOr everything at once, the JFScan just does not care and scans all the targets specified: $ echo target1 | jfscan --top-ports 1000 target2 --targets targets.txt -q | httpx -silent | nucleiUtilize nmap to gather more info about discovered services: $ cat targets.txt | jfscan -p 0-65535 --nmap --nmap-options="-sV --scripts ssh-auth-methods"The targets.txt can contain targets in the following forms (IPv6 similarly):

http://domain.com/
domain.com
1.2.3.4
1.2.3.0/24
1.1.1.1-1.1.1.30 Installation* Before installation, make sure you have the latest version of Masscan installed (tested version is 1.3.2).

First, install a libpcap-dev (Debian based distro) or libcap-devel (Centos based distro):

sudo apt install libpcap-dev

Next, clone the official repository and install:

sudo apt-get –assume-yes install git make gcc
git clone https://github.com/robertdavidgraham/masscan
cd masscan
make
sudo make install

The Masscan requires root permissions to run. Since running binaries under root is not good idea, we will set a CAP_NET_RAW capability to the binary:

sudo setcap CAP_NET_RAW+ep /usr/bin/masscan

For installation of JFscan a python3 and pip3 is required.

sudo apt install python3 python3-pip

Install JFScan:

$ git clone https://github.com/nullt3r/jfscan.git
$ cd jfscan
$ pip3 install .

If you can’t run the jfscan directly from command line you should check if $HOME/.local/bin is in your path.

Add the following line to your ~/.zshrcor ~/.bashrc:

export PATH=”$HOME/.local/bin:$PATH” Download

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
I am disappointed

So a few weeks ago I managed to download thousand of internal documents from an insurance company's staff website without logging in.

I offered them the information and my script on GitHub.

And they never retrieved the code.

Took them about a week to just admit/understand the documents where fully accessible to anyone with the urls.

Anyways my code was pretty, short and sweet and I am disappointed no one will ever look at it.

submitted by /u/human8264829264
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
How do websites know you're using selenium ?

I was trying to automate some stuff on Gmail and AliExpress and both website completely refuse authentication through an automated browser window.

How is it detected and is there a workaround ?

submitted by /u/human8264829264
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
how do you find the hash text of a profile

I'm trying to hack back into my Instagram account and nothing has worked so far, and when I started to try to hack back into it I couldn't even find the hash text to try to brute force it or dictionary attack or anything like that. can you guys help

submitted by /u/Marshenmanhunter
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Can taking advantage of an exploit in a foreign website get you in trouble?

Say you theoretically found an exploit in a Macau lottery website and chose to use the exploit to profit, would you be in any legal trouble in the U.S.? Is it even an issue if the exploit is already there and accessible to the public? It's not like I attacked the website or created the exploit, just using it.

submitted by /u/raheke8
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video