Hacking Articles Tips Tricks Videos Tutorials
468 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: security in practice
Is Jim Browning Real?

I’ve been hooked to Jim Brownings Channel on youtube where he gets into scammers computers and save victims, take down scam centers and even see them on their cameras. Is this actually possible? Let me ask the real question: Is this Real?

submitted by /u/imtrecasso
[link] [comments]
hacking: security in practice
iCloud unlock

Does anyone know how to unlock an iCloud? Message me is you do please!

submitted by /u/Lilahgirl99
[link] [comments]
Bypass rate limit to enumeration users through Google Drive

Hi everyone, today I’m gonna took about vulnerability that I found it in Google. In fact, when I sent the report to Google, it wasn’t a…Continue reading on Medium »
Read more...
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
Invoke SocksProxy : Socks Proxy & Reverse Socks Server Using Powershell

Invoke SocksProxy is a tool that creates a local or “reverse” Socks proxy using powershell. The local proxy is a simple Socks 4/5 proxy. The reverse proxy creates a tcp tunnel by initiating outbond SSL connections that can go through the system’s proxy. The tunnel can then be used as a socks proxy on the […]

The post Invoke SocksProxy : Socks Proxy & Reverse Socks Server Using Powershell appeared first on Kali Linux Tutorials.
Hi everyone, today I’m gonna took about vulnerability that I found it in Google. In fact, when I sent the report to Google, it wasn’t a…Continue reading on Medium » (https://3bodymo.medium.com/bypass-rate-limit-to-enumeration-users-through-google-drive-ed64e07c879c?source=rss------bug_bounty-5)
Kraker - Distributed Password Brute-Force System That Focused On Easy Use
http://www.kitploit.com/2021/03/kraker-distributed-password-brute-force.html
Kraker is a distributed (https://www.kitploit.com/search/label/Distributed) password brute-force (https://www.kitploit.com/search/label/Brute-force) system that allows you to run and manage the hashcat on different servers and workstations, focused on easy of use. There were two main goals during the design and development: to create the most simple tool for distributed hash cracking (https://www.kitploit.com/search/label/Cracking) and make it fault-tolerant. Kraker consists of two main components - a server and an agent, which communicate through a REST API. You can read about their installation and configuration below. Kraker continues to be in development, so the new functionality, documentation, and updates will be released as they become available. If you have suggestions for improvement or want to participate in the development or find bugs - feel free to open issues, pull requests, or contact us: @_w34kp455 (https://twitter.com/w34kp455) and @_asSheShouldBe (https://twitter.com/asSheShouldBe).
Setup
Here you can find a manual on how to setup your own server, build an agent from the source and run it. You always can download a Release that is already built and run it.
Server
Server is written on Laravel and provides a web interface for creating brute force (https://www.kitploit.com/search/label/Brute%20Force) tasks and also serves for managing agents.
Setup
sudo apt update
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
rm get-docker.sh
sudo curl -L "https://github.com/docker/compose/releases/download/1.25.3/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
sudo systemctl enable docker

sudo docker-compose build app
sudo docker-compose up -d
sudo docker-compose exec app composer install
sudo docker-compose exec app php artisan key:generate
sudo docker-compose exec app php artisan migrate
sudo docker-compose exec app php artisan db:seed --class=HashtypeSeeder
sudo docker-compose exec app php artisan db:seed --class=UserSeeder

Navigate the server IP address and enter the next credentials: Login: admin Password: kraker
Agent
It is written in .NET Core 5 and works on any OS where this framework is available - Linux, Windows, MacOS (not tested yet). The agent is responsible for performing brute-force tasks that it receives from the server.
Setup
For the agent to work on the host, you need to install .NET Core 5, which can be downloaded from the following link: https://dotnet.microsoft.com/download/dotnet/5.0 Linux - https://docs.microsoft.com/ru-ru/dotnet/core/install/linux Windows -https://dotnet.microsoft.com/download/dotnet/thank-you/runtime-5.0.4-windows-x64-installer
Build from source
Install .NET Core 5 SDK. Linux example: wget https://packages.microsoft.com/config/debian/10/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
sudo apt-get update
sudo apt-get install -y apt-transport-https
sudo apt-get update
sudo apt-get install -y dotnet-sdk-5.0
To compile agent from source code, go to agent folder and run the next command: dotnet build --configuration Release. After that in Kracker.App/bin/Release/net5.0 folder you will get the built project. You need to download hashcat from the official page at https://hashcat.net/hashcat/, unpack it into the agent's folder. Modify appsettings.json in Kracker.App/bin/Release/net5.0 and put ServerURL and Hashcat.Path like: {
"HashCat":{
"Path": "/home/admin/Kraker/agent/Kracker.App/bin/Release/net5.0/hashcat/hashcat.bin", //hashcat path
"SilencePeriodBeforeKill": 5, //default - 60 minutes
"RepeatedStringsBeforeKill": 100, //defaut 1000 strings
"NeedForce": true,
"Options": "--quiet --status --status-timer=1 --machine-readable --logfile-disable --restore-disable --outfile-format=2"
},
"ServerUrl": "http://8.8.8.8/", //server url
"InventoryCheckPeriod": 600,
"HearbeatPeriod": 15
}

Create a folder wordlist and rule and put there your favorite wordlist (https://www.kitploit.com/search/label/Wordlist) and rules. Run Kraker.app.exe or use command dotnet run Kraker.app.dll You can copy-paste the agent folder from server to server for easy setup. Happy cracking!
Using release
In release you can find: pre-installed hashcat https://hashcat.net/hashcat/ rules from https://github.com/ttmyst/tmyst_rules Running agent from release: Install .NET Core 5 runtime. Modify appsettings.json in Kracker.App/bin/Release/net5.0 and put ServerURL and Hashcat.Path. Put your favorite wordlist and rules in wordlist and rule folders. You can find lots of wordlists on https://weakpass.com (https://weakpass.com/). Run Kraker.app.exe or use command dotnet Kraker.app.dll
Contacts
@_w34kp455 (https://twitter.com/w34kp455) @_asSheShouldBe (https://twitter.com/asSheShouldBe) https://weakpass.com (https://weakpass.com/)

Download Kraker (https://github.com/zzzteph/kraker)
Deep Web
Torrezz

Is torrezz down for good or going through maintenance? Been offline since yesterday

submitted by /u/justgowithit44444
[link] [comments]
Hacking Articles Tips Tricks Videos Tutorials
Photo
Deep Web
User Survey for my master thesis

Dear,

I am a master's student at TU/eindhoven, The Netherlands. I am doing research on Examining user experiences when using the Tor browser. The purpose of this user survey is to examine/explore who finds the broken functionality of webpages an issue when using the Tor browser in the different security levels. The survey is completely anonymous and confidential, the answers will be deleted after a conclusion is drawn from it. I request Tor users to help me with my master thesis by answering the survey :)



https://blocksurvey.io/survey/1MoQ1V6xG53egT5S7HcsZ99EUKzbHBN8kM/f242bfff-9507-4d30-9538-2446de103c09

submitted by /u/10johnwick01
[link] [comments]