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
Is an ethernet connection required for mitm attacks?

I tried sniffing traffic through wifi and mitm a few months ago but was never able to sniff anything beyond basic traffic. Is an ethernet connection required for getting http requests and the like?

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

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Similar style to the wifi pinaple

Hello all, do any of you guys know any of or software perhaps that can be used as an os for an rpi4 to mimic the feel of a wifi pineapple? Id love to have a os on my rpi that is basically a wifi pineapple so that i could just simply turn on my rasberry pi and access it through another web interface on a different device. Maybe you guys know like a software for kali that does this job well (ideally with a GUI/Web interface for conveniece). Basically anything that is like the wifi pinaple. Thanks in advancefor any suggestions.

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

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Changing Account Info Illegal?

So to make a VERY LONG story short I was given the password to an account that manages internet service that is not my own, think the portal for paying your bill, etc. Well this particular internet service provider allowed you to manage your router in this portal, so I paused a devices WiFi, changed all the login, and contact info, and then logged out. Next day the owner of the account notices WiFi isn't working on a device so they call the ISP, they tell them how all the information was changed etc.

Is what I did technically illegal if I was GIVEN the password to this account a while back and I didn't use any exploits or hacks to gain access or change the info? Just the GUI of the website really lol.

Thank you in advance.

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

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Canary Tokens

Hey I recently created a custom version of the canary tokens from canarytokens.org which is using the flask restful api library.

I know about 'request.environ' to get the basic data from a users request including IP etc., but is anyone aware of how to implement other calls to get more specific data from users requests?

The tool will be free when complete and I'll follow up with the link to deployed site where you can register and create your own tracking tokens (for educational purposes.....)

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

___________________________
@hacking_Attack
@Hacking_Video
Best Certificates for Junior Penetration Tester
https://www.reddit.com/r/Pentesting/comments/u55stu/best_certificates_for_junior_penetration_tester/

I’m a new to the field of Pentesting. I have basic to intermediate knowledge of programming (Python, JavaScript, Django, SQL, PostgreSQL). I also have basic knowledge of networking and Linux. At the moment I’m doing TryHackMe and TCM Courses(Heath Adams) to get the fundamentals of Ethical Hacking. My goal: Become a Ethical hacker/Red Teaming This is something I have always wanted to do and finally I have time in my life to dedicate to learning. My question: Apart from OSCP, what other certs do you guys recommend? Any certs or training that will help me land my first job? I understand OSCP is well respected, however, it’s going to push me to the limits with regards financially because it start at $1,499. Currently, I’m considering eCPPTv2 but if anyone has any other recommendations that would be great. Also, I’m only looking for Practical exams/certs so I can showcase my hacking knowledge to employers. Any recommendations/advice much appreciated. submitted by /u/Dperera121 (https://www.reddit.com/user/Dperera121)
[link] (https://www.reddit.com/r/Pentesting/comments/u55stu/best_certificates_for_junior_penetration_tester/) [comments] (https://www.reddit.com/r/Pentesting/comments/u55stu/best_certificates_for_junior_penetration_tester/)

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Where do data leaks/spills end up?

As in, which websites or paste bins do data leaks usually end up on after someone has hacked a website or stolen info?

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

___________________________
@hacking_Attack
@Hacking_Video
Kraken is an online distributed brute force (https://www.kitploit.com/search/label/Brute%20Force) password cracking tool. It allows you to parallelize dictionaries and crunch word generator (https://www.kitploit.com/search/label/Generator) based cracking across multiple machines both as a web app in a web browser and as a standalone electron based client. Kraken aims to be easy to use, fault tolerant and scalable. I wrote Kraken because I wanted to learn more about offensive security and to write an easy solution to overcome the limitation of using a single device when attempting distribute brute force workloads.
Installation Server and Browser Client Kraken is a dockerized application using docker-compose which will launch the db (Postgres), s3 compliant file storage (Minio), the server and the browser client. You can find the docker-compose file at the root directory (https://www.kitploit.com/search/label/Directory) of the repository. You can deploy it using the following command: docker-compose up
Kraken's Browser Client should be accessible at: HTTP : localhost:8080 (http://localhost:8080/) (use server url http://localhost:5000/api [default]) HTTPS : https://localhost:8443 (https://localhost:8443/) (use server url https://localhost:8443/api) Note: To run the Browser Client from a remote machine, you MUST use HTTPS for both server url and browser url. Eg. If you are hosting the server on 192.168.1.2, then browser client will be available at https://192.168.1.2:8443 (https://192.168.1.2:8443/) and the server url should be https://192.168.1.2:8443/api To upload password lists or dictionaries, upload them to Minio Console at localhost:9001 (http://localhost:9001/). Kraken's server runs on localhost:5000 (http://localhost:5000/) and also hosts swagger documentation at localhost:5000/swagger (http://localhost:5000/swagger). Portable Desktop Client The desktop client is an electron based portable application and can be run on Mac, Windows and Linux. Due to sensitive permissions required to function, it is highly recommended that you compile and it yourself by cloning the repo and using : cd kraken-client
npm install
npm run electron-start
Windows Note: Window EXE portable client needs to run in the folder with its hashcat dependencies. Hashcat files can be dowloaded from their home page or here (https://hashcat.net/files/hashcat-5.1.0.7z). Ive included a compressed zip file with the portable executable and required hashcat files. They can be downloaded: Portable Exe (https://github.com/arcaneiceman/kraken/releases/download/dockerUpdate/kraken-client.1.2.0.exe) Compressed Zip (https://github.com/arcaneiceman/kraken/releases/download/dockerUpdate/kraken-client-with-dependencies.zip) Linux Releases include a Linux AppImage which only requires hashcat to be installed. AppImage (https://github.com/arcaneiceman/kraken/releases/download/dockerUpdate/kraken-client-1.2.0.AppImage) Install hashcat: sudo apt-get install hashcat
You will have to give AppImage permission via properties to execute. Note This guide is on-going but please feel free to raise an issue or contact me for any help required.

Download Kraken (https://github.com/arcaneiceman/kraken)

___________________________
@hacking_Attack
@Hacking_Video