Hacking Articles Tips Tricks Videos Tutorials
470 subscribers
66.1K photos
15 videos
157 files
133K 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
How to find a email?

Can anyone guide me as to how can find email of an account in web server like Instagram, Facebook, etc. If so please DM me Thank you

submitted by /u/Mr-Invincible3
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
How to Protect Myself

My sister’s bf (a CS major) stayed over for a week and after he left, I noticed that on private browser on my personal computer his email auto filled on the PayPal log in. I never let him use or touch my computer, and neither did my sister. I am absolutely certain of this. I don’t even have his contact information. How would his email address auto fill on my computer? Is this kali Linux? Is there a way to screen for if my computer has been hacked so I can prove it? Also, how can I protect myself in the future since he is coming back. Thank you.

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

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
Tscopy : Tool to parse the NTFS $MFT file to locate and copy specific files

Tscopy is a requirement during an Incident Response (IR) engagement to have the ability to analyze files on the filesystem. Sometimes these files are locked by the operating system (OS) because they are in use, which is particularly frustrating with event logs and registry hives. It allows the user, who is running with administrator privileges, […]

The post Tscopy : Tool to parse the NTFS $MFT file to locate and copy specific files appeared first on Kali Linux Tutorials.

___________________________
@hacking_Attack
@Hacking_Video
Reckon-ng : Backbone of Osint Analysis

WHAT IS OSINT AND WHY IS IT IMPORTANT?Continue reading on InfoSec Write-ups »
Read more...
Recon Methodology for Bug Hunting !

What is Reconnaissance or information gathering?
Read more...

___________________________
@hacking_Attack
@Hacking_Video
Deep Web
How to find links

Hey guys I have a question how do you find links on the dark web I know its trough link lists but if you could provide me with some links it would be amazing

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

___________________________
@hacking_Attack
@Hacking_Video
For the longest of times, content discovery (https://www.kitploit.com/search/label/Content%20Discovery) has been focused on finding files and folders. While this approach is effective for legacy web servers that host static files or respond with 3xx’s upon a partial path, it is no longer effective for modern web applications, specifically APIs. Over time, we have seen a lot of time invested in making content discovery tools faster so that larger wordlists can be used, however the art of content discovery has not been innovated upon. Kiterunner is a tool that is capable of not only performing traditional content discovery at lightning fast speeds, but also bruteforcing (https://www.kitploit.com/search/label/Bruteforcing) routes/endpoints in modern applications. Modern application frameworks such as Flask, Rails, Express, Django and others follow the paradigm of explicitly defining routes which expect certain HTTP methods, headers, parameters and values. When using traditional content discovery tooling, such routes are often missed and cannot easily be discovered. By collating a dataset of Swagger specifications and condensing it into our own schema, Kiterunner can use this dataset to bruteforce API endpoints by sending the correct HTTP method, headers, path, parameters and values for each request it sends. Swagger files were collected from a number of datasources, including an internet wide scan for the 40+ most common swagger paths. Other datasources included GitHub via BigQuery (https://cloud.google.com/bigquery/public-data/github), and APIs.guru (https://apis.guru/).
Installation

Downloading a release
You can download a pre-built copy from https://github.com/assetnote/kiterunner/releases.
Building from source
# build the binary
make build

# symlink your binary
ln -s $(pwd)/dist/kr /usr/local/bin/kr

# compile the wordlist
# kr kb compile
kr kb compile routes.json routes.kite

# scan away
kr scan hosts.txt -w routes.kite -x 20 -j 100 --ignore-length=1053 The JSON datasets can be found below: routes-large.json (https://wordlists-cdn.assetnote.io/rawdata/kiterunner/routes-large.json.tar.gz) (118MB compressed, 2.6GB decompressed) routes-small.json (https://wordlists-cdn.assetnote.io/rawdata/kiterunner/routes-small.json.tar.gz) (14MB compressed, 228MB decompressed) Alternatively, it is possible to download the compile .kite files from the links below: routes-large.kite (https://wordlists-cdn.assetnote.io/data/kiterunner/routes-large.kite.tar.gz) (40MB compressed, 183M decompressed) routes-small.kite (https://wordlists-cdn.assetnote.io/data/kiterunner/routes-small.kite.tar.gz) (2MB compressed, 35MB decompressed)
Usage

Quick Start
kr [scan|brute] [flags]
can be a file, a domain, or URI. we'll figure it out for you. See Input/Host Formatting (https://github.com/assetnote/kiterunner#inputhost-formatting) for more details # Just have a list of hosts and no wordlist
kr scan hosts.txt -A=apiroutes-210328:20000 -x 5 -j 100 --fail-status-codes 400,401,404,403,501,502,426,411

# You have your own wordlist but you want assetnote wordlists too
kr scan target.com -w routes.kite -A=apiroutes-210328:20000 -x 20 -j 1 --fail-status-codes 400,401,404,403,501,502,426,411

# Bruteforce (https://www.kitploit.com/search/label/Bruteforce) like normal but with the first 20000 words
kr brute https://target.com/subapp/ -A=aspx-210328:20000 -x 20 -j 1

# Use a dirsearch style wordlist with %EXT%
kr brute https://target.com/subapp/ -w dirsearch.txt -x 20 -j 1 -exml,asp,aspx,ashx -D

CLI Help
Usage:
kite scan [flags]

Flags:
-A, --assetnote-wordlist strings use the wordlists from wordlist.assetnote.io. specify the type/name to use, e.g. apiroutes-210228. You can specify an additional maxlength to use only the first N values in the wordlist, e.g. apiroutes-210228;20000 will only use the first 20000 lines in that wordlist

___________________________
@hacking_Attack
@Hacking_Video