Hacking Articles Tips Tricks Videos Tutorials
470 subscribers
65.9K 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
Hey guys, funny story

Idk where to go for this but here it goes, some dude a discord server i was in was a pedo and sex offender, i reported him, but now he’s basically trying to pull my IP and find where i live. will deleting my discord account stop this

submitted by /u/Dr-Toast-man
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
Second-Order - Subdomain Takeover Scanner

Scans web applications for second-order subdomain takeover by crawling the app, and collecting URLs (and other data) that match certain rules, or respond in a certain way. Installation From binary Download a prebuilt binary from the releases page and unzip it. From source Go version 1.17 is recommended. go install -v github.com/mhmdiaa/second-order@latest Docker docker pull mhmdiaa/second-order Command line options Directory to save results in (default "output") -threads int Number of threads (default 10)"> -target string Target URL -config string Configuration file (default "config.json") -depth int Depth to crawl (default 1) -header value Header name and value separated by a colon 'Name: Value' (can be used more than once) -insecure Accept untrusted SSL/TLS certificates -output string Directory to save results in (default "output") -threads int Number of threads (default 10) Configuration File Example configuration files are in config LogQueries: A map of tag-attribute queries that will be searched for in crawled pages. For example, "a": "href" means log every href attribute of every a tag. LogNon200Queries: A map of tag-attribute queries that will be searched for in crawled pages, and logged only if they contain a valid URL that doesn't return a 200 status code. LogInline: A list of tags whose inline content (between the opening and closing tags) will be logged, like title and script Output All results are saved in JSON files that specify what and where data was found The results of LogQueries are saved in attributes.json { "https://example.com/": { "inputname": "user", "id", "debug" }} The results of LogNon200Queries are saved in non-200-url-attributes.json { "https://example.com/": { "scriptsrc": "https://cdn.old\_abandoned\_domain.com/app.js", }} The results of LogInline are saved in inline.json { "https://example.com/": { "title": "Example - Home" }, "https://example.com/login": { "title": "Example - login" }} Usage Ideas This is a list of tips and ideas (not necessarily related to second-order subdomain takeover) on what to use Second Order for. Check for second-order subdomain takeover: takeover.json. (Duh!) Collect inline and imported JS code: javascript.json. Find where a target hosts static files cdn.json. (S3 buckets, anyone?) Collect names to build a tailored parameter bruteforcing wordlist: parameters.json. Feel free to contribute more ideas! References https://shubs.io/high-frequency-security-bug-hunting-120-days-120-bugs/#secondorder https://edoverflow.com/2017/broken-link-hijacking/ Download Second-Order
Read more...

___________________________
@hacking_Attack
@Hacking_Video
Scans web applications for second-order subdomain takeover (https://www.kitploit.com/search/label/Subdomain%20Takeover) by crawling (https://www.kitploit.com/search/label/Crawling) the app, and collecting URLs (and other data) that match certain rules, or respond in a certain way.
Installation From binary Download a prebuilt binary from the releases page (https://github.com/mhmdiaa/second-order/releases/latest) and unzip it. From source Go version 1.17 is recommended. go install -v github.com/mhmdiaa/second-order@latest
Docker docker pull mhmdiaa/second-order
Command line options Directory to save results in (default "output") -threads int Number of threads (default 10)"> -target string
Target URL
-config string
Configuration file (default "config.json")
-depth int
Depth to crawl (default 1)
-header value
Header name and value separated by a colon 'Name: Value' (can be used more than once)
-insecure
Accept untrusted SSL/TLS certificates
-output string
Directory to save results in (default "output")
-threads int
Number of threads (default 10)
Configuration File Example configuration files are in config (https://github.com/mhmdiaa/second-order/blob/master/config) LogQueries: A map of tag-attribute queries that will be searched for in crawled pages. For example, "a": "href" means log every href attribute of every a tag. LogNon200Queries: A map of tag-attribute queries that will be searched for in crawled pages, and logged only if they contain a valid URL that doesn't return a 200 status code. LogInline: A list of tags whose inline content (between the opening and closing tags) will be logged, like title and script Output All results are saved in JSON files that specify what and where data was found The results of LogQueries are saved in attributes.json {
"https://example.com/": {
"input[name]": [
"user",
"id",
"debug"
]
}
}
The results of LogNon200Queries are saved in non-200-url-attributes.json {
"https://example.com/": {
"script[src]": [
"https://cdn.old_abandoned_domain.com/app.js",
]
}
}
The results of LogInline are saved in inline.json {
"https://example.com/": {
"title": [
"Example - Home"
]
},
"https://example.com/login": {
"title": [
"Example - login"
]
}
}
Usage Ideas This is a list of tips and ideas (not necessarily related to second-order subdomain (https://www.kitploit.com/search/label/Subdomain) takeover) on what to use Second Order for. Check for second-order subdomain takeover: takeover.json (https://github.com/mhmdiaa/second-order/blob/master/config/takeover.json). (Duh!) Collect inline and imported JS code: javascript.json (https://github.com/mhmdiaa/second-order/blob/master/config/javascript.json). Find where a target hosts static files cdn.json (https://github.com/mhmdiaa/second-order/blob/master/config/cdn.json). (S3 buckets, anyone?) Collect names to build a tailored parameter bruteforcing (https://www.kitploit.com/search/label/Bruteforcing) wordlist: parameters.json (https://github.com/mhmdiaa/second-order/blob/master/config/parameters.json). Feel free to contribute more ideas! References https://shubs.io/high-frequency-security-bug-hunting-120-days-120-bugs/#secondorder https://edoverflow.com/2017/broken-link-hijacking/

Download Second-Order (https://github.com/mhmdiaa/second-order)

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking Articles|Raj Chandel's Blog
Corrosion: 2 VulnHub Walkthrough

Proxy Programmer's Corrosion: 2 is a Vulnhub medium machine. We can download the lab from here. This lab is designed for experienced CTF players who want to put their abilities to the test in a variety of situations. So, let's get started and see how we can split things down into smaller chunks. Pentest Methodology● netdiscover● nmap● dirb● fcrackzip● metasploit● /etc/shadow● john● ssh● python library hijacking● root flagTo begin, we must use the netdiscovercommand to scan the network for the target machine's IP address.netdiscoverThe victim's IP address in this case is 192.168.1.186.Nmapto help us move this process along. To see all of the services stated, we need to know which ones are now available.nmap -sV 192.168.1.186According to the nmap output, we have: EnumerationLet's begin by looking at the http service on port 80. There's nothing strange about that; it's just an Apache server page.https://blogger.googleusercontent.com/img/a/AVvXsEj54r-dtA2Td_EreVBny2CnBsqg297VfT88nOhnFmg8CJirwXme8CkHlvtf9Q6mfDTbMAkajh6wNryxyw_eEE6fZTz2rHTC6GOHQ56AnElwXg3auNh8NBw4u7vPpmGpSVx_MstpZgd0WfPykQ0niRWjC7TBGkyyuEw9Z03lW15eJarU_B1iAT74Ikt0cg=s16000 Next, we looked at the Tomcat server, which was listening on port 8080. It's a straightforward page with nothing suspicious on it.dirb directory brute force method to find some knowledge. Smash!! We discovered a directory containing abackup zip file.dirb http://192.168.1.186:8080/ -X .php,.ziphttps://blogger.googleusercontent.com/img/a/AVvXsEivYUcRnvTmVMoAefYSQDiTk8ObWNULLNYpj3evT59FuIoO39u2GOqtfpypZ8-jv676-H0X2UxmF7EgkYr3MtNPplBZlwye3F405YGP522yoZPMV0x8462KI5de3jiyiEMLwb5LE-fmhvMc_sq28uA_qki39HqOKIXOofn_eiFBICTC08GFWfSYJQVQlA=s16000 The backup zip fileis then downloaded using the wget command. Following that, we attempted to study this file, but it was password protected.wget http://192.168.1.186:8080/backup.ziphttps://blogger.googleusercontent.com/img/a/AVvXsEgM1XNQw9_EzbADCJTb-wlaBJEoQisGsd3EeAY1cBkKj1i2ajrzdytKfXAruWt_CGAiN5V69FQ86WmEUwrxmxDhIZhwn1X9ky52RWBf2PUa_MvNsnLb_9TExlMPwc-g19QJI6Ized9Hg9DVa_MWHLr2yjWk8xWWWCHDYVH4f6t0alPwsRoQ3-qR3SjJDQ=s16000 Next, we'll use the fcrackziputility to crack this pass[...]

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking Articles|Raj Chandel's Blog
Intelligence HacktheBox Walkthrough

IntroductionIntelligence is a CTF Windows box with difficulty rated as “medium” on the HackTheBox platform. The machine covers OSINT, AD attacks, and silver ticket for privilege escalation.Table of ContentEnumerationsvc_int$ExploitationPrivilege EscalationNetwork ScanningThe dedicated IP address of the machine is 10.129.163.131. We’ll run a nmap scan on this machine’s IP.nmap -sV -p- 10.129.163.131We found many ports open; 53 - DNS, 80 - HTTP and 445- SMB caught our eye.EnumerationImmediately headed over to SMB and tried listing shares without password but it was not fruitful.echo "Jose.Williams" > usernames> usernames usernames ___________________________
@hacking_Attack
@Hacking_Video