Nimcrypt2 - .NET, PE, And Raw Shellcode Packer/Loader Written In Nim
http://www.kitploit.com/2022/03/nimcrypt2-net-pe-and-raw-shellcode.html
___________________________
@hacking_Attack
@Hacking_Video
http://www.kitploit.com/2022/03/nimcrypt2-net-pe-and-raw-shellcode.html
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
Nimcrypt2 - .NET, PE, And Raw Shellcode Packer/Loader Written In Nim
Nimcrypt2 is yet another PE packer/loader designed to bypass AV/EDR. It is an improvement on my original Nimcrypt (https://github.com/icyguider/nimcrypt) project, with the main improvements being the use of direct syscalls (https://www.kitploit.com/search/label/Syscalls) and the ability to load regular PE files as well as raw shellcode. Before going any further, I must acknowledge those who did the VAST majority of work and research (https://www.kitploit.com/search/label/Research) that this project depends on. Firstly, I must thank @byt3bl33d3r (https://twitter.com/byt3bl33d3r) for his Offensive Nim repo (https://github.com/byt3bl33d3r/OffensiveNim), and @ShitSecure (https://twitter.com/ShitSecure) for all of the code snippets he's publicly released. That is what the original version of this tool was created from, and the current version is no different. Particularly, the new PE loading functionality used in this tool is just an implementation of ShitSecure's recently released Nim-RunPE (https://github.com/S3cur3Th1sSh1t/Nim-RunPE) code. I highly encourage sponsoring him for access to his own Nim PE Packer (https://twitter.com/ShitSecure/status/1482428360500383755), which is no doubt a much better and more featureful version of this.
Additionally, I would like to thank @ajpc500 (https://twitter.com/ajpc500) for his NimlineWhispers2 (https://github.com/ajpc500/NimlineWhispers2) project that this tool uses for direct syscalls. I cannot stress enough how this project is simply an amalgamation of the public work of those previously mentioned, so all credit must go to them. ] [-p ] [-n] [-u] [-s] [-v] nimcrypt (-h | --help) Options: -h --help Show this screen. --version Show version. -f --file filename File to load -t --type filetype Type of file (csharp, raw, or pe) -p --process process Name of process for shellcode injection -o --output filename Filename for compiled exe -u --unhook Unhook ntdll.dll -v --verbose Enable verbose messages during execution -n --no-randomization Disable syscall name randomization -s --no-sandbox Disable sandbox checks"> ___
.-' `'.
/ \
| ;
| | ___.--,
_.._ |0) ~ (0) | _.---'`__.-( (_.
__.--'`_.. '.__.\ '--. \_.-' ,.--'` `""`
( ,.--'` ',__ /./; ;, '.__.'` __
_`) ) .---.__.' / | |\ \__..--"" ""'--.,_
`---' .'.''-._.-'`_./ /\ '. \ _.-~~~````~~~-._`-.__.'
| | .' _.-' | | \ \ '. `~---`
\ \/ .' \ \ '. '-._)
\/ / \ \ `=.__`~-. Nimcrypt v2
jgs / /\ `) ) / / `"".`\
, _.-'.'\ \ / / ( ( / / 3-in-1 C#, PE, & Raw Shellcode Loader
`--~` ) ) .-'.' '.'. | (
(/` ( (` ) ) '-;
` '-; (-'
Nimcrypt v 2.0
Usage:
nimcrypt -f file_to_load -t csharp/raw/pe [-o ] [-p ] [-n] [-u] [-s] [-v]
nimcrypt (-h | --help)
Options:
-h --help Show this screen.
--version Show version.
-f --file filename File to load
-t --type filetype Type of file (csharp, raw, or pe)
-p --process process Name of process for shellcode injection
-o --output filename Filename for compiled exe
-u --unhook Unhook ntdll.dll
___________________________
@hacking_Attack
@Hacking_Video
Additionally, I would like to thank @ajpc500 (https://twitter.com/ajpc500) for his NimlineWhispers2 (https://github.com/ajpc500/NimlineWhispers2) project that this tool uses for direct syscalls. I cannot stress enough how this project is simply an amalgamation of the public work of those previously mentioned, so all credit must go to them. ] [-p ] [-n] [-u] [-s] [-v] nimcrypt (-h | --help) Options: -h --help Show this screen. --version Show version. -f --file filename File to load -t --type filetype Type of file (csharp, raw, or pe) -p --process process Name of process for shellcode injection -o --output filename Filename for compiled exe -u --unhook Unhook ntdll.dll -v --verbose Enable verbose messages during execution -n --no-randomization Disable syscall name randomization -s --no-sandbox Disable sandbox checks"> ___
.-' `'.
/ \
| ;
| | ___.--,
_.._ |0) ~ (0) | _.---'`__.-( (_.
__.--'`_.. '.__.\ '--. \_.-' ,.--'` `""`
( ,.--'` ',__ /./; ;, '.__.'` __
_`) ) .---.__.' / | |\ \__..--"" ""'--.,_
`---' .'.''-._.-'`_./ /\ '. \ _.-~~~````~~~-._`-.__.'
| | .' _.-' | | \ \ '. `~---`
\ \/ .' \ \ '. '-._)
\/ / \ \ `=.__`~-. Nimcrypt v2
jgs / /\ `) ) / / `"".`\
, _.-'.'\ \ / / ( ( / / 3-in-1 C#, PE, & Raw Shellcode Loader
`--~` ) ) .-'.' '.'. | (
(/` ( (` ) ) '-;
` '-; (-'
Nimcrypt v 2.0
Usage:
nimcrypt -f file_to_load -t csharp/raw/pe [-o ] [-p ] [-n] [-u] [-s] [-v]
nimcrypt (-h | --help)
Options:
-h --help Show this screen.
--version Show version.
-f --file filename File to load
-t --type filetype Type of file (csharp, raw, or pe)
-p --process process Name of process for shellcode injection
-o --output filename Filename for compiled exe
-u --unhook Unhook ntdll.dll
___________________________
@hacking_Attack
@Hacking_Video
GitHub
GitHub - icyguider/nimcrypt: PE Crypter written in Nim
PE Crypter written in Nim. Contribute to icyguider/nimcrypt development by creating an account on GitHub.
-v --verbose Enable verbose messages during execution< br/> -n --no-randomization Disable syscall name randomization
-s --no-sandbox Disable sandbox checks
Features: NtQueueApcThread Shellcode Execution w/ PPID Spoofing (https://www.kitploit.com/search/label/Spoofing) & 3rd Party DLL Blocking Syscall Name Randomization Ability to load .NET and Regular PE Files AES Encryption (https://www.kitploit.com/search/label/Encryption) with Dynamic Key Generation Sandbox Evasion Tested and Confirmed Working on: Windows 11 (10.0.22000) Windows 10 21H2 (10.0.19044) Windows 10 21H1 (10.0.19043) Windows 10 20H2 (10.0.19042) Windows 10 19H2 (10.0.18363) Windows Server 2019 (10.0.17763) Installation/Dependencies: Nimcrypt2 is designed to be used on Linux systems with Nim installed. Before installing Nim, you must ensure that you have the following packages installed via your package manager: sudo apt install gcc mingw-w64 xz-utils git
To install Nim, I prefer to use choosenim (https://github.com/dom96/choosenim) as follows: > ~/.bashrc export PATH=$HOME/.nimble/bin:$PATH'>curl https://nim-lang.org/choosenim/init.sh -sSf | sh
echo "export PATH=$HOME/.nimble/bin:$PATH" >> ~/.bashrc
export PATH=$HOME/.nimble/bin:$PATH
Nimcrypt2 also depends on a few packages that can be installed via Nimble. This can be done like so: nimble install winim nimcrypto docopt ptr_math
With all the dependencies now installed, Nimcrypt2 can be compiled like so: nim c -d=release --cc:gcc --embedsrc=on --hints=on --app=console --cpu=amd64 --out=nimcrypt nimcrypt.nim
Known Bugs: As described (https://github.com/S3cur3Th1sSh1t/Nim-RunPE/blob/a117ecec635824703047c1d850607bdf2cfa628b/README.md?plain=1#L13) by ShitSecure, if the release version of mimikatz is loaded via the PE loader, it will not accept commands for some unknown reason. Using a version of mimikatz that was compiled from source fixes this issue. Greetz & Credit: @byt3bl33d3r (https://twitter.com/byt3bl33d3r) for their Offensive Nim project: https://github.com/byt3bl33d3r/OffensiveNim @ShitSecure (https://twitter.com/ShitSecure) for their Nim-RunPE project: https://github.com/S3cur3Th1sSh1t/Nim-RunPE @ajpc500 (https://twitter.com/ajpc500) for their NimlineWhispers2 project: https://github.com/ajpc500/NimlineWhispers2 @Snovvcrash (https://twitter.com/snovvcrash) for their NimHollow (https://www.kitploit.com/search/label/NimHollow) project: https://github.com/snovvcrash/NimHollow
Download Nimcrypt2 (https://github.com/icyguider/Nimcrypt2)
___________________________
@hacking_Attack
@Hacking_Video
-s --no-sandbox Disable sandbox checks
Features: NtQueueApcThread Shellcode Execution w/ PPID Spoofing (https://www.kitploit.com/search/label/Spoofing) & 3rd Party DLL Blocking Syscall Name Randomization Ability to load .NET and Regular PE Files AES Encryption (https://www.kitploit.com/search/label/Encryption) with Dynamic Key Generation Sandbox Evasion Tested and Confirmed Working on: Windows 11 (10.0.22000) Windows 10 21H2 (10.0.19044) Windows 10 21H1 (10.0.19043) Windows 10 20H2 (10.0.19042) Windows 10 19H2 (10.0.18363) Windows Server 2019 (10.0.17763) Installation/Dependencies: Nimcrypt2 is designed to be used on Linux systems with Nim installed. Before installing Nim, you must ensure that you have the following packages installed via your package manager: sudo apt install gcc mingw-w64 xz-utils git
To install Nim, I prefer to use choosenim (https://github.com/dom96/choosenim) as follows: > ~/.bashrc export PATH=$HOME/.nimble/bin:$PATH'>curl https://nim-lang.org/choosenim/init.sh -sSf | sh
echo "export PATH=$HOME/.nimble/bin:$PATH" >> ~/.bashrc
export PATH=$HOME/.nimble/bin:$PATH
Nimcrypt2 also depends on a few packages that can be installed via Nimble. This can be done like so: nimble install winim nimcrypto docopt ptr_math
With all the dependencies now installed, Nimcrypt2 can be compiled like so: nim c -d=release --cc:gcc --embedsrc=on --hints=on --app=console --cpu=amd64 --out=nimcrypt nimcrypt.nim
Known Bugs: As described (https://github.com/S3cur3Th1sSh1t/Nim-RunPE/blob/a117ecec635824703047c1d850607bdf2cfa628b/README.md?plain=1#L13) by ShitSecure, if the release version of mimikatz is loaded via the PE loader, it will not accept commands for some unknown reason. Using a version of mimikatz that was compiled from source fixes this issue. Greetz & Credit: @byt3bl33d3r (https://twitter.com/byt3bl33d3r) for their Offensive Nim project: https://github.com/byt3bl33d3r/OffensiveNim @ShitSecure (https://twitter.com/ShitSecure) for their Nim-RunPE project: https://github.com/S3cur3Th1sSh1t/Nim-RunPE @ajpc500 (https://twitter.com/ajpc500) for their NimlineWhispers2 project: https://github.com/ajpc500/NimlineWhispers2 @Snovvcrash (https://twitter.com/snovvcrash) for their NimHollow (https://www.kitploit.com/search/label/NimHollow) project: https://github.com/snovvcrash/NimHollow
Download Nimcrypt2 (https://github.com/icyguider/Nimcrypt2)
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
Leading source of security tools, hacking tools, cybersecurity and network security. Learn about new tools and updates in one place.
Different parsers, different results
https://medium.com/@nnez/different-parsers-different-results-acecf84dfb0c?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
https://medium.com/@nnez/different-parsers-different-results-acecf84dfb0c?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
Medium
Different parsers, different results
TLDR; I found a critical vulnerability on GearBox protocol, result from different parsers of path parameters used between GearBox adapter…
TLDR; I found a critical vulnerability on GearBox protocol, result from different parsers of path parameters used between GearBox adapter…Continue reading on Medium » (https://medium.com/@nnez/different-parsers-different-results-acecf84dfb0c?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
Medium
Different parsers, different results
TLDR; I found a critical vulnerability on GearBox protocol, result from different parsers of path parameters used between GearBox adapter…
Hacking on Medium
Thehackinghub ; Making Human Existence Easier Through Cyber Solutions
TheHackingHub may be a stage with well experienced cyber specialists that are accessible circular the clock for contract to solve any…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Thehackinghub ; Making Human Existence Easier Through Cyber Solutions
TheHackingHub may be a stage with well experienced cyber specialists that are accessible circular the clock for contract to solve any…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Thehackinghub ; Making Human Existence Easier Through Cyber Solutions
TheHackingHub may be a stage with well experienced cyber specialists that are accessible circular the clock for contract to solve any…
Hacking on Medium
Top 3 Fundamental Skills To Get Started Into Cybersecurity.
So, hey fella people today we will be looking at top 3 cybersecurity fundamental skills to have in 2022 which will help you understand the…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Top 3 Fundamental Skills To Get Started Into Cybersecurity.
So, hey fella people today we will be looking at top 3 cybersecurity fundamental skills to have in 2022 which will help you understand the…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Top 3 Fundamental Skills To Get Started Into Cybersecurity.
So, hey fella people today we will be looking at top 3 cybersecurity fundamental skills to have in 2022 which will help you understand the…
Hacking on Medium
TOP 10 Linux Utilities for Bugbounty/Hacking.
https://cdn-images-1.medium.com/max/1292/0*N_Aq04ySgNGbgFZE
Hey there, I am Samrat Gupta aka Sm4rty, a Security Researcher and a Bug Bounty Hunter. In this Blog I will be sharing some of the common…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
TOP 10 Linux Utilities for Bugbounty/Hacking.
https://cdn-images-1.medium.com/max/1292/0*N_Aq04ySgNGbgFZE
Hey there, I am Samrat Gupta aka Sm4rty, a Security Researcher and a Bug Bounty Hunter. In this Blog I will be sharing some of the common…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
TOP 10 Linux Utilities for Bugbounty/Hacking.
Hey there, I am Samrat Gupta aka Sm4rty, a Security Researcher and a Bug Bounty Hunter. In this Blog I will be sharing some of the common…
Hacking on Medium
Is It Possible to Hack It? The $1 Million Password Hacking Challenge Sets a New Record
https://cdn-images-1.medium.com/max/2600/1*FQzzjVFTJlczV1cVW5HyQQ.jpeg
Do you want to compete for a $1 million prize in a password hacking competition? You do, of course. Here’s all you need to know about it.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Is It Possible to Hack It? The $1 Million Password Hacking Challenge Sets a New Record
https://cdn-images-1.medium.com/max/2600/1*FQzzjVFTJlczV1cVW5HyQQ.jpeg
Do you want to compete for a $1 million prize in a password hacking competition? You do, of course. Here’s all you need to know about it.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Is It Possible to Hack It? The $1 Million Password Hacking Challenge Sets a New Record
Do you want to compete for a $1 million prize in a password hacking competition? You do, of course. Here’s all you need to know about it.
Hacking on Medium
Year Of The Fox CTF…
https://cdn-images-1.medium.com/max/600/0*Cah6pacW-T36KQ-5.png
Whats the contents of the web flag?
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Year Of The Fox CTF…
https://cdn-images-1.medium.com/max/600/0*Cah6pacW-T36KQ-5.png
Whats the contents of the web flag?
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Year Of The Fox CTF…
Whats the contents of the web flag?
Hacking Articles Tips Tricks Videos Tutorials
GIF
KitPloit - PenTest Tools!
Nimcrypt2 - .NET, PE, And Raw Shellcode Packer/Loader Written In Nim
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiys8OACKfgsKDYuW4hT-_z5NTOO8ekXeyUFxQTWxoYBek7r30sH8IyKMdq7hmzWcM9ydEFvzQaVXo3HjVq6cWm62EWEpdVSZvJLGNusxMmqzW0LV4wj3yLtNO3NbZFDQP0zdhZdmurNBOvH7u51gsjrXuane1J9gqVhnBTHTV1TgiYoKCQ69WAC-Vl/w640-h256/nimcrypt.gif Nimcrypt2 is yet another PE packer/loader designed to bypass AV/EDR. It is an improvement on my original Nimcrypt project, with the main improvements being the use of direct syscalls and the ability to load regular PE files as well as raw shellcode.
Before going any further, I must acknowledge those who did the VAST majority of work and research that this project depends on. Firstly, I must thank @byt3bl33d3r for his Offensive Nim repo, and @ShitSecure for all of the code snippets he's publicly released. That is what the original version of this tool was created from, and the current version is no different. Particularly, the new PE loading functionality used in this tool is just an implementation of ShitSecure's recently released Nim-RunPE code. I highly encourage sponsoring him for access to his own Nim PE Packer, which is no doubt a much better and more featureful version of this.
Additionally, I would like to thank @ajpc500 for his NimlineWhispers2 project that this tool uses for direct syscalls. I cannot stress enough how this project is simply an amalgamation of the public work of those previously mentioned, so all credit must go to them.
] [-p
* Syscall Name Randomization
* Ability to load .NET and Regular PE Files
* AES Encryption with Dynamic Key Generation
* Sandbox Evasion Tested and Confirmed Working on:* Windows 11 (10.0.22000)
* Windows 10 21H2 (10.0.19044)
* Windows 10 21H1 (10.0.19043)
* Windows 10 20H2 (10.0.19042)
* Windows 10 19H2 (10.0.18363)
* Windows Server 2019 (10.0.17763) Installation/Dependencies:Nimcrypt2 is designed to[...]
___________________________
@hacking_Attack
@Hacking_Video
Nimcrypt2 - .NET, PE, And Raw Shellcode Packer/Loader Written In Nim
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiys8OACKfgsKDYuW4hT-_z5NTOO8ekXeyUFxQTWxoYBek7r30sH8IyKMdq7hmzWcM9ydEFvzQaVXo3HjVq6cWm62EWEpdVSZvJLGNusxMmqzW0LV4wj3yLtNO3NbZFDQP0zdhZdmurNBOvH7u51gsjrXuane1J9gqVhnBTHTV1TgiYoKCQ69WAC-Vl/w640-h256/nimcrypt.gif Nimcrypt2 is yet another PE packer/loader designed to bypass AV/EDR. It is an improvement on my original Nimcrypt project, with the main improvements being the use of direct syscalls and the ability to load regular PE files as well as raw shellcode.
Before going any further, I must acknowledge those who did the VAST majority of work and research that this project depends on. Firstly, I must thank @byt3bl33d3r for his Offensive Nim repo, and @ShitSecure for all of the code snippets he's publicly released. That is what the original version of this tool was created from, and the current version is no different. Particularly, the new PE loading functionality used in this tool is just an implementation of ShitSecure's recently released Nim-RunPE code. I highly encourage sponsoring him for access to his own Nim PE Packer, which is no doubt a much better and more featureful version of this.
Additionally, I would like to thank @ajpc500 for his NimlineWhispers2 project that this tool uses for direct syscalls. I cannot stress enough how this project is simply an amalgamation of the public work of those previously mentioned, so all credit must go to them.
] [-p
___
.-' `'.
/ \
| ;
| | ___.--,
_.._ |0) ~ (0) | _.---'`__.-( (_.
__.--'`_.. '.__.\ '--. \_.-' ,.--'` `""`
( ,.--'` ',__ /./; ;, '.__.'` __
_`) ) .---.__.' / | |\ \__..--"" ""'--.,_
`---' .'.''-._.-'`_./ /\ '. \ _.-~~~````~~~-._`-.__.'
| | .' _.-' | | \ \ '. `~---`
\ \/ .' \ \ '. '-._)
\/ / \ \ `=.__`~-. Nimcrypt v2
jgs / /\ `) ) / / `"".`\
, _.-'.'\ \ / / ( ( / / 3-in-1 C#, PE, & Raw Shellcode Loader
`--~` ) ) .-'.' '.'. | (
(/` ( (` ) ) '-;
` '-; (-'
Nimcrypt v 2.0
Usage:
nimcrypt -f file_to_load -t csharp/raw/pe [-o ] [-p -n --no-randomization Disable syscall name randomization
-s --no-sandbox Disable sandbox checks Features:* NtQueueApcThread Shellcode Execution w/ PPID Spoofing & 3rd Party DLL Blocking* Syscall Name Randomization
* Ability to load .NET and Regular PE Files
* AES Encryption with Dynamic Key Generation
* Sandbox Evasion Tested and Confirmed Working on:* Windows 11 (10.0.22000)
* Windows 10 21H2 (10.0.19044)
* Windows 10 21H1 (10.0.19043)
* Windows 10 20H2 (10.0.19042)
* Windows 10 19H2 (10.0.18363)
* Windows Server 2019 (10.0.17763) Installation/Dependencies:Nimcrypt2 is designed to[...]
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
Nimcrypt2 - .NET, PE, And Raw Shellcode Packer/Loader Written In Nim
Hacking Articles Tips Tricks Videos Tutorials
KitPloit - PenTest Tools! Nimcrypt2 - .NET, PE, And Raw Shellcode Packer/Loader Written In Nim https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiys8OACKfgsKDYuW4hT-_z5NTOO8ekXeyUFxQTWxoYBek7r30sH8IyKMdq7hmzWcM9ydEFvzQaVXo3HjVq6cWm62EWEpdVSZvJLG…
be used on Linux systems with Nim installed. Before installing Nim, you must ensure that you have the following packages installed via your package manager:
> ~/.bashrc export PATH=$HOME/.nimble/bin:$PATH">
Nimcrypt2 also depends on a few packages that can be installed via Nimble. This can be done like so:
* @ShitSecure for their Nim-RunPE project: https://github.com/S3cur3Th1sSh1t/Nim-RunPE
* @ajpc500 for their NimlineWhispers2 project: https://github.com/ajpc500/NimlineWhispers2
* @Snovvcrash for their NimHollow project: https://github.com/snovvcrash/NimHollow Download Nimcrypt2
___________________________
@hacking_Attack
@Hacking_Video
sudo apt install gcc mingw-w64 xz-utils git To install Nim, I prefer to use choosenim as follows:> ~/.bashrc export PATH=$HOME/.nimble/bin:$PATH">
curl https://nim-lang.org/choosenim/init.sh -sSf | sh
echo "export PATH=$HOME/.nimble/bin:$PATH" >> ~/.bashrc
export PATH=$HOME/.nimble/bin:$PATH Nimcrypt2 also depends on a few packages that can be installed via Nimble. This can be done like so:
nimble install winim nimcrypto docopt ptr_math With all the dependencies now installed, Nimcrypt2 can be compiled like so: nim c -d=release --cc:gcc --embedsrc=on --hints=on --app=console --cpu=amd64 --out=nimcrypt nimcrypt.nim Known Bugs:* As described by ShitSecure, if the release version of mimikatz is loaded via the PE loader, it will not accept commands for some unknown reason. Using a version of mimikatz that was compiled from source fixes this issue. Greetz & Credit:* @byt3bl33d3r for their Offensive Nim project: https://github.com/byt3bl33d3r/OffensiveNim* @ShitSecure for their Nim-RunPE project: https://github.com/S3cur3Th1sSh1t/Nim-RunPE
* @ajpc500 for their NimlineWhispers2 project: https://github.com/ajpc500/NimlineWhispers2
* @Snovvcrash for their NimHollow project: https://github.com/snovvcrash/NimHollow Download Nimcrypt2
___________________________
@hacking_Attack
@Hacking_Video
GitHub
GitHub - byt3bl33d3r/OffensiveNim: My experiments in weaponizing Nim (https://nim-lang.org/)
My experiments in weaponizing Nim (https://nim-lang.org/) - byt3bl33d3r/OffensiveNim
hacking: security in practice
Clipboard malware on my computer
Apparently, there was some malware on my Windows 10 pc that changes any bitcoin address to this one:
"bc1qn0r06gtwlamffet49fph9jnm9u2e2ylx5ns7qc".
I sold a Google Play card on a legit website for bitcoin and didn't even notice that i put the wrong address. I was confused as it said that the transaction was complete and there were no bitcoins on my electrum wallet (this is my first bitcoin transaction btw). After some time of being confused i realised that the address is wrong and then i tried coping the right one and it was pasting the one noted above! I was still confused, thought at first that the c on the keyboard doesn't function properly or that windows automaticaly doesn't copy as it thinks it's the same text or smth. But then i realised that this may is a malware... I googled about it and there exist malware like this one... Then googled about the address and it has a complete history of transactions and others have reported it for scamming and issues like this one.
Funny thing is that i don't even know how long i had this malware on my computer and was focused on not getting scammed selling my gift card haha. Thankfully, the amound was only 25$ but im still surprised.
I am now scanning my computer to find the malware, it might take some hours, and then will try to analyze it. I don't think any other password is hacked as i don't believe there is data being send from it but you never know... After this i am ofcourse removing windows from my computer forever and changing every single password i have.
submitted by /u/JuicyNatural
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Clipboard malware on my computer
Apparently, there was some malware on my Windows 10 pc that changes any bitcoin address to this one:
"bc1qn0r06gtwlamffet49fph9jnm9u2e2ylx5ns7qc".
I sold a Google Play card on a legit website for bitcoin and didn't even notice that i put the wrong address. I was confused as it said that the transaction was complete and there were no bitcoins on my electrum wallet (this is my first bitcoin transaction btw). After some time of being confused i realised that the address is wrong and then i tried coping the right one and it was pasting the one noted above! I was still confused, thought at first that the c on the keyboard doesn't function properly or that windows automaticaly doesn't copy as it thinks it's the same text or smth. But then i realised that this may is a malware... I googled about it and there exist malware like this one... Then googled about the address and it has a complete history of transactions and others have reported it for scamming and issues like this one.
Funny thing is that i don't even know how long i had this malware on my computer and was focused on not getting scammed selling my gift card haha. Thankfully, the amound was only 25$ but im still surprised.
I am now scanning my computer to find the malware, it might take some hours, and then will try to analyze it. I don't think any other password is hacked as i don't believe there is data being send from it but you never know... After this i am ofcourse removing windows from my computer forever and changing every single password i have.
submitted by /u/JuicyNatural
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Clipboard malware on my computer
Apparently, there was some malware on my Windows 10 pc that changes any bitcoin address to this...
hacking: security in practice
Is there a way to browse content for free from apps like pixiv fanbox or patreon?
actually kemeno. the party does these things but not all the artists are there and e hentai doesn't open either
submitted by /u/Weird_Molasses_1095
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Is there a way to browse content for free from apps like pixiv fanbox or patreon?
actually kemeno. the party does these things but not all the artists are there and e hentai doesn't open either
submitted by /u/Weird_Molasses_1095
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Is there a way to browse content for free from apps like pixiv...
actually kemeno. the party does these things but not all the artists are there and e hentai doesn't open either
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking Articles|Raj Chandel's Blog
Lateral Movement: Remote Services (Mitre:T1021)
IntroductionDuring Red Team assessments, after a compromise has been done, attackers tend to laterally move through the network gaining more relevant information on other systems. This lateral movement is possible through the use of many binaries/services/processes. In this article we will be solely focusing on Lateral Movement using Remote Services, i.e., services that can help in code/command execution on remote systems by taking in valid set of credentials. Oftentimes, same set of credentials are used within organization and this type of lateral movement becomes very easy and effective.T1021.001, T1021.002, T1021.003, T1021.004, T1021.005, T1021.006)Table of content· Background· Understanding Attack Lab· Lateral Movement through RDP (T1021.001)· RDP Hijacking using Task Manager· RDP Hijacking using Tscon· RDP Hijacking using Mimikatz· SharpRDP Authenticated Code Execution· Lateral Movement through SMB (T1021.002)· PsExec SMB RCE· Sc.exe process creation· Metasploit SMB Remote PsExec· Cmd.exe SMB RCE· SharpMove.exe SMB RCE· Lateral Movement through DCOM (T1021.003)· Mmc20.application remote DCOM· Lateral Movement through SSH (T1021.004)· SSH Port Forwarding· Lateral Movement through VNC (T1021.005)· VNCinject payload· Lateral Movement through WinRM (T1021.006)· New-PSSession Powershell· Invoke-Command Powershell· Winrs· Evil-Winrm· Lateral Movement through Mimikatz· Lateral Movement through WMI· Lateral Movement through Invoke-WmiMethod· ConclusionLateral movement is very helpful in gathering more data by compromising more systems rather than relying on just a single system to gain higher privileges and eventually compromise entire network.Understanding Attack LabFor the article I have two setups in hand. One is an Active Directory setup with the domain “ignite.local” and the other is simple 2 windows devices connected on bridged with a Kali system in a non-domain environment. The details are as follows:Lateral Movement through RDP (T1021.001)According to Microsoft, RDP is based on, and is an extension of, the T-120 family of protocol standards. [...]
___________________________
@hacking_Attack
@Hacking_Video
Lateral Movement: Remote Services (Mitre:T1021)
IntroductionDuring Red Team assessments, after a compromise has been done, attackers tend to laterally move through the network gaining more relevant information on other systems. This lateral movement is possible through the use of many binaries/services/processes. In this article we will be solely focusing on Lateral Movement using Remote Services, i.e., services that can help in code/command execution on remote systems by taking in valid set of credentials. Oftentimes, same set of credentials are used within organization and this type of lateral movement becomes very easy and effective.T1021.001, T1021.002, T1021.003, T1021.004, T1021.005, T1021.006)Table of content· Background· Understanding Attack Lab· Lateral Movement through RDP (T1021.001)· RDP Hijacking using Task Manager· RDP Hijacking using Tscon· RDP Hijacking using Mimikatz· SharpRDP Authenticated Code Execution· Lateral Movement through SMB (T1021.002)· PsExec SMB RCE· Sc.exe process creation· Metasploit SMB Remote PsExec· Cmd.exe SMB RCE· SharpMove.exe SMB RCE· Lateral Movement through DCOM (T1021.003)· Mmc20.application remote DCOM· Lateral Movement through SSH (T1021.004)· SSH Port Forwarding· Lateral Movement through VNC (T1021.005)· VNCinject payload· Lateral Movement through WinRM (T1021.006)· New-PSSession Powershell· Invoke-Command Powershell· Winrs· Evil-Winrm· Lateral Movement through Mimikatz· Lateral Movement through WMI· Lateral Movement through Invoke-WmiMethod· ConclusionLateral movement is very helpful in gathering more data by compromising more systems rather than relying on just a single system to gain higher privileges and eventually compromise entire network.Understanding Attack LabFor the article I have two setups in hand. One is an Active Directory setup with the domain “ignite.local” and the other is simple 2 windows devices connected on bridged with a Kali system in a non-domain environment. The details are as follows:Lateral Movement through RDP (T1021.001)According to Microsoft, RDP is based on, and is an extension of, the T-120 family of protocol standards. [...]
___________________________
@hacking_Attack
@Hacking_Video
Blogspot
Lateral Movement: Remote Services (Mitre:T1021)
Hacking Articles is a very interesting blog about information security, penetration testing and vulnerability assessment managed by Raj Chandel.
Hacking Articles Tips Tricks Videos Tutorials
Hacking Articles|Raj Chandel's Blog Lateral Movement: Remote Services (Mitre:T1021) IntroductionDuring Red Team assessments, after a compromise has been done, attackers tend to laterally move through the network gaining more relevant information on other…
A multichannel capable protocol allows for separate virtual channels for carrying the following information:RDP Hijacking using Task ManagerWhen you connect to a user “Administrator” and open task manager-> go to users-> you’d see this if a user “hex” is signed out currently but exists.RDP Hijacking using Tscontscon is a Microsoft Windows utility that was introduced the release of Windows Server 2012. It is used to connect to another session on a Remote Desktop Session Host server. It requires the destination and the session id to work. The User credentials can also be passed as parameter in tscon. Read more about it here.whoami tscon 3 /DEST:rdp-tcp#9https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiR326WYaKMMD0mTHM4wdWejoNGaDT05rM3T8J2rSzJgpwuI7mqL-UI1jHe7AOg643hyK2bB9ieuGEpx92_RSu849B-T90AEh6upm6XkYMXhPlf-WIMeQtg3wUrN5AVyA6KJ-axFr_Ix4KG5jM5HXQIJ2dNtB2eMANxO0j98C7S-tki05FEo-3L0gehQw/s16000/5.png It will immediately open a new user “hex” in the same Remote Desktop Connection! This can be verified by whoamiRDP Hijacking using MimikatzMimikatz includes a module “ts” to play with RDP sessions. It is an implementation of tscon only with added features of mimikatz. We can see active user sessions usingts::sessionshttps://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiXUsKIuox50VQD0kpqSvOqqw0zP1zEp2mFxHtH1p_GizC0Q-bFTR_9kpn9kdaYY_ZmkPEf2F_j7v4RisWVsocc6oqpXsFKkcNfK3H3sNBoc6iVs7MtB6Z8yCGAZ8uFvrl4rIEiBsCdTnOIrAsA9GYqsWBVU-AEeaGuYwBwO4eX5ADaddiSO_UsyGh-Tw/s16[...]
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video