Hacking Articles Tips Tricks Videos Tutorials
470 subscribers
66.1K 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
How I Found P1 in Bugcrowd with only Recon

ToolContinue reading on Medium »
Read more...
How I Found P1 with Google Dork on Bugcrowd Program

ToolContinue reading on Medium »
Read more...
Creating Fully Undetectable (FUD) Stager in C
https://www.reddit.com/r/redteamsec/comments/yeoif6/creating_fully_undetectable_fud_stager_in_c/

Hope you enjoyed the video and learned something new! https://youtu.be/Pu06zYUdpGs Still a lot of things to implement in order for this to be practical but I think it was fun seeing 0/26 AV detection. Feel free to improve it yourself and do it responsible, you are responsible for your own actions with that. submitted by /u/lsecqt (https://www.reddit.com/user/lsecqt)
[link] (https://www.reddit.com/r/redteamsec/comments/yeoif6/creating_fully_undetectable_fud_stager_in_c/) [comments] (https://www.reddit.com/r/redteamsec/comments/yeoif6/creating_fully_undetectable_fud_stager_in_c/)

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
PartyLoud : A Simple Tool To Generate Fake Web Browsing And Mitigate Tracking

PartyLoud is a highly configurable and straightforward free tool that helps you prevent tracking directly from your linux terminal, no special skills required. Once started, you can forget it is running. It provides several flags; each flag lets you customize your experience and change PartyLoud behaviour according to your needs.

* Simple. 3 files only, no installation required, just clone this repo an you’re ready to go.
* Powerful. Thread-based navigation.
* Stealthy. Optimized to emulate user navigation.
* Portable. You can use this script on every unix-based OS. How It Works?* URLs and keywords are loaded (either from partyloud.conf and badwords or from user-defined files)
* If proxy flag has been used, proxy config will be tested
* For each URL in ULR-list a thread is started, each thread as an user agent associated
* Each thread will start by sending an HTTP request to the given URL
* The response if filtered using the keywords in order to prevent 404s and malformed URLs
* A new URL is choosen from the list generated after filering
* Current thread sleeps for a random time
* Actions from 4 to 7 are repeated using the new URL until user send kill signal (CTRL-C or enter key) Features* Configurable urls list and blocklist
* Random DNS Mode : each request is done on a different DNS Server
* Multi-threaded request engine (# of thread are equal to # of urls in partyloud.conf)
* Error recovery mechanism to protect Engines from failures
* Spoofed User Agent prevent from fingerprinting (each engine has a different user agent)
* Dynamic UI SetupClone the repository:

git clone https://github.com/realtho/PartyLoud.git

Navigate to the directory and make the script executable:

cd PartyLoud
chmod +x partyloud.sh

Run ‘partyloud’:

./partyloud.sh

Usage
Usage: ./partyloud.sh [options...]

-d --dns To stop the script press either enter or CRTL-CFile SpecificationsIn current release there is no input-validation on files.
If you find bugs or have suggestions on how to improve this features please help me by opening issues on GitHub IntroIf you don’t have special needs , default config files are just fine to get you started.
Default files are located in:

* badwords
* partyloud.conf
* DNSList

Please note that file name and extension are not important, just content of files matter badwords – Keywords-based blocklistbadwords is a keywords-based blocklist used to filter non-HTML content, images, document and so on.
The default config as been created after several weeks of testing. If you really think you need a custom blocklist, my suggestion is to start by copy and modifying default config according to your needs.
Here are some hints on how to create a great blocklist file:
DO https://s.w.org/images/core/emoji/14.0.0/72x72/2705.png DONT https://s.w.org/images/core/emoji/14.0.0/72x72/1f6ab.png Use only ASCII charsDefine one-site-only rulesTry to keep the rules as general as possibleDefine case-sensitive rulesPrefer relative pathPlace more than one rule per line partyloud.conf – ULR Listpartyloud.conf is a ULR List used as starting point for fake navigation generators.
The[...]

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Kali Linux Tutorials PartyLoud : A Simple Tool To Generate Fake Web Browsing And Mitigate Tracking PartyLoud is a highly configurable and straightforward free tool that helps you prevent tracking directly from your linux terminal, no special skills required.…
goal here is to create a good list of sites containing a lot of URLs.
Aside suggesting you not to use google, youtube and social networks related links, I’ve really no hints for you. Note #1 – To work properly the URLs must be well-formed Note #2 – Even if the file contains 1000 lines only 10 are used (first 10, working on randomness) Note #3 – Only one URL per line is allowed DNSList – DNS ListDNSList is a List of DNS used as argument for random DNS feature. Random DNS is not enable by default, so the “default file” is really just a guide line and a test used while developing the function to se if everything was working as expected.
The only suggestion here is to add as much address as possible to increase randomness. Note #1 – Only one address per line is allowed FAQIsn’t this literally just a cli based frontend to curl?

How does the error recovery mechanism work?

May I fork your project? How easy is this fake traffic to detect?

What does badwords do?

What does partyloud.conf do?
partyloud.conf is just a list of root urls used to start the fake navigation. You can create your own conf file, but pay attention that the more urls you add, the more threads you start. This is an “open issue”. Upcoming releases will come with a max thread number in order to avoid Fork Bombs. Click Here To Download

___________________________
@hacking_Attack
@Hacking_Video