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 Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Yet another mini CTF (BURP SUITE)

https://cdn-images-1.medium.com/max/1920/1*_Q6H0UGN4RrigX9rWvRTzA.png
Used a sniper attack using Burp suite took me a whole day to get this thing done which is just one half of the room on THM.

Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Ask Dennis: Information Security 101

https://cdn-images-1.medium.com/max/600/0*IItCyODEee9qB5AK
Want to ensure the security of your information at home? Vulnerabilities may exist in the devices you use, but you can do something about…

Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Dark Reading: Attacks/Breaches
Business Email Compromise Costs Businesses More Than Ransomware

Ransomware gets the headlines, but business paid out $1.8 billion last year to resolve BEC issues, according to an FBI report.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Dark Reading: Attacks/Breaches
Zero-Day Flaws in SonicWall Email Security Tool Under Attack

Three zero-day vulnerabilities helped an attacker install a backdoor, access files and emails, and move laterally into a target network.
hacking: security in practice
Hostname Naming Scheme For Comcast?

I'm sure most of us are in the same boat: I enjoy exploring. On the internet that takes the form up scanning, poking and prodding at systems and hosts.

When looking at Comcast infrastructure, you will be greeted with things like

be-302-cr14.56marietta.ga.ibone.comcast.net
be-1413-cs04.houston.tx.ibone.comcast.net

These seemingly represent different switches and routers along the path to the destination.

I've seen ibone & ccal along the way and I believe ibone are major routers since I see things like:
... 5.|-- ae-2-ar01.fresno.ca.ccal.comcast.net 6.|-- be-33667-cr02.losangeles.ca.ibone.comcast.net ...
Which would indicate that ccal are more local compared to ibone which route interstate traffic.

Hoping to learn more about how Comcast networks are designed and connected. I really only have experience with home and business networks so learning about how an ISP is designed would be really interesting.

submitted by /u/flakyapple2020
[link] [comments]
hacking: security in practice
Yahoo 2012 -- Data

I'm wondering if anyone happens to know where I could find a copy of the data. If it's not obvious this isn't for anything malicious as anything that old the data would be useless; if anyone could help me out.

submitted by /u/Lilblaez
[link] [comments]
Dnspeep - Spy On The DNS Queries Your Computer Is Making
http://www.kitploit.com/2021/04/dnspeep-spy-on-dns-queries-your.html
dnspeep lets you spy on the DNS queries your computer is making. Here's some example output: $ sudo dnspeep
query name server IP response
A incoming.telemetry.mozilla.org 192.168.1.1 CNAME: telemetry-incoming.r53-2.services.mozilla.com, CNAME: pipeline-incoming-prod-elb-149169523.us-west-2.elb.amazonaws.com, A: 52.39.144.189, A: 54.191.136.131, A: 34.215.151.143, A: 54.149.208.57, A: 44.226.235.191, A: 52.10.174.113, A: 35.160.138.173, A: 44.238.190.78
AAAA incoming.telemetry.mozilla.org 192.168.1.1 CNAME: telemetry-incoming.r53-2.services.mozilla.com, CNAME: pipeline-incoming-prod-elb-149169523.us-west-2.elb.amazonaws.com
A www.google.com 192.168.1.1 A: 172.217.13.132
AAAA www.google.com 192.168.1.1 AAAA: 2607:f8b0:4020:807::2004
A www.neopets.com 192.168.1.1 CNAME: r9c3n8d2.stackpathcdn.com, A: 151.139.128.11
AAAA www.neopets.com 192.168.1.1 CNAME: r9c3n8d2.stackpathcdn.com


How to install
You can install dnspeep using the different methods below.
Installing the binary (https://www.kitploit.com/search/label/Binary) release
Download recent release of dnspeep from the GitHub releases page (https://github.com/jvns/dnspeep/releases) Unpack it Put the dnspeep binary in your PATH (for example in /usr/local/bin)
Compile and installing from source
Download recent source release of dnspeep from the GitHub releases page (https://github.com/jvns/dnspeep/releases) or git clone this repository. Unpack it Run cargo build --release Change to the "target/release" directory there. Put the dnspeep binary in your PATH (for example in /usr/local/bin)
Installing from a Linux (https://www.kitploit.com/search/label/Linux) package manager
If you are using Arch Linux, then you can install dnspeep from the AUR (https://aur.archlinux.org/).
How it works
It uses libpcap to capture packets (https://www.kitploit.com/search/label/Capture%20Packets) on port 53, and then matches up DNS request and response packets (https://www.kitploit.com/search/label/Packets) so that it can show the request and response together on the same line. It also tracks DNS queries which didn't get a response within 1 second and prints them out with the response .
Limitations
Only supports the DNS query types supported by the dns_parser crate (here's a list (https://docs.rs/dns-parser/0.8.0/dns_parser/)) Doesn't support TCP DNS queries, only UDP It can't show DNS-over-HTTPS queries (because it would need to MITM the HTTPS connection)

Download Dnspeep (https://github.com/jvns/dnspeep)