Deep Dive Into SectopRat

Image
Hello World, In this Article we will gonna look through a newly version of SectopRat Its written in Dotnet So It wasn't so hard. Thanks for @Arkbird   and JAMESWT  For Their Original Tweets.  Quick Introduction: SectopRat is a RAT Tool was Firstly Discovered by MalwareHunterTeam  in November 15,2019 It has capabilities like connecting to C2 Server, Profiling the System, Steal Browser History From Browsers like Chrome and Firefox, It Sends Stolen User Data in a Json File.  In Depth Reversing: Sectop Weapozies WMI ( Windows Management Instrumentation ) in Order to Collect System Information.   Here it Gets OS Name and Version:  Sectop Has a Class named "GetSystemInfo" that Implements most of its System Profiling.  It Collects:        . OS Name and Version       . Graphics Card Name and Vram Size       . CPU Version and Number Of Cores       ...

OllyDbg Script CheatSheet

ODbgScript Is a very usefull Plugin. It can automate your work in olly and make it more easier when it comes to unpacking and such stuff its instructions is very similar to asm. I am still learning it and I forget alot so I decided to post a cheat sheet. for it :). 


Variables:

var = For Defining  Variables 

mov = move a value from place to another

$RESULT = Stores the Result of an operation 


Conditional Jumps:


JNE = Jump if not equal

JE  = Jump if Equal 

JMP  = Jump 

JB = Jump if Below

JA = Jump if Above 

CMP = Compare two operands 


Commands:


STI = Execute F7 

run = Execute F9 (run) 

STO = Execute F8 

BC = Clear a Break point 

BP = Set Break Point 

BPHWS = Set Hardware Breakpoint 

BPHWC = Remove Hardware Breakpoint 

msg = Display Message 

find = find an expression at an address 

cmt = put comment 

go = go to address


Other Notes:

ollydbg scripts collections

ollyscriptplugin


Popular posts from this blog

Deep Dive Into SectopRat

Deep Dive Into HERMES Ransomware

Intro to Malware Traffic Analysis