- RunDll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,0
- RunDll32.exe msrating.dll,RatingSetupUI
#include <windows.h> | |
#include <stdio.h> | |
FARPROC fpCreateProcessW; | |
BYTE bSavedByte; | |
// Blog Post Here: | |
// https://0x00sec.org/t/user-mode-rootkits-iat-and-inline-hooking/1108 | |
// tasklist | findstr explore.exe |
from idaapi import * | |
# with code taken from | |
# - http://hexblog.com/idapro/vmware_modules.py | |
# - HexRays forum | |
# - https://gist.github.com/nmulasmajic/f90661489f858237bcd68fbde5516abd#file-find_nt_imagebase_x64-py | |
class LoadedModulesList(Choose2): | |
def __init__(self, title, modlistEA=BADADDR, flags=0, width=None, height=None, embedded=False, modal=False): |
Moved: https://github.com/OALabs/hexcopy-ida |
import sys | |
import re | |
if len(sys.argv) <= 1: exit() | |
scriptpath = sys.argv[1] | |
with open(scriptpath, 'r') as scriptfile: | |
script = scriptfile.read().replace('^', '') | |
p = re.compile('\([Ss][Ee][Tt][^=]+=([^&]+)&&') | |
s = p.search(script) |
## Uploaded by @JohnLaTwC | |
## Sample Hash: 80610bb3a5be887e9eaa7f6883725b24c358862b39b52c4766634554f02bc9d2 | |
olevba3 0.53.1 - http://decalage.info/python/oletools | |
Flags Filename | |
----------- ----------------------------------------------------------------- | |
OpX:M-S-HB-- 9eaa7f6883725b24c358862b39b52c4766634554f02bc9d2 | |
=============================================================================== | |
FILE: 9eaa7f6883725b24c358862b39b52c4766634554f02bc9d2 | |
Type: OpenXML | |
------------------------------------------------------------------------------- |
# Subleq Processor module for Flareon5 challenge 12. Tested in IDA 7 | |
# by @ulexec | |
import sys | |
import idc | |
import idaapi | |
import idautils | |
from idc import * | |
from idaapi import * |
IDA Plugins | Preferred | Neutral | Unreviewed |
---|
default['sshd']['sshd_config']['AuthenticationMethods'] = 'publickey,keyboard-interactive:pam' | |
default['sshd']['sshd_config']['ChallengeResponseAuthentication'] = 'yes' | |
default['sshd']['sshd_config']['PasswordAuthentication'] = 'no' |