Compare commits
4 Commits
38706feff6
...
a628370365
Author | SHA1 | Date |
---|---|---|
JoYo | a628370365 | |
JoYo | a3ba591077 | |
JoYo | ba8d38e56b | |
JoYo | 8d8df2ab5a |
|
@ -2,3 +2,4 @@
|
|||
from .run import sins
|
||||
from .mutation import generation, mutate
|
||||
from .orm import db_config, ScrapNode
|
||||
from .disassemble import disasm, objdump
|
||||
|
|
|
@ -4,7 +4,8 @@ import json
|
|||
|
||||
capstone = Cs(CS_ARCH_X86, CS_MODE_64)
|
||||
|
||||
def disasm(shellcode: bytes)->list:
|
||||
|
||||
def disasm(shellcode: bytes) -> list:
|
||||
opcodes = list()
|
||||
|
||||
for opcode in capstone.disasm(shellcode, 0):
|
||||
|
@ -12,7 +13,8 @@ def disasm(shellcode: bytes)->list:
|
|||
|
||||
return opcodes
|
||||
|
||||
def objdump(shellcode: bytes)->str:
|
||||
|
||||
def objdump(shellcode: bytes) -> str:
|
||||
opcodes = str()
|
||||
|
||||
for opcode in capstone.disasm(shellcode, 0):
|
||||
|
|
|
@ -54,20 +54,14 @@ def generation(queue: Queue, shellcode: bytes):
|
|||
queue.put(result)
|
||||
|
||||
|
||||
def growth(*, shellcode: bytes, length: int) -> bytes:
|
||||
if length <= len(shellcode):
|
||||
return bytes(shellcode)
|
||||
|
||||
opcodes = disasm(shellcode)
|
||||
|
||||
def growth(*, shellcode: bytes, objdump: str) -> bytes:
|
||||
max_op_len = 15
|
||||
|
||||
if len(shellcode) > len(opcodes) * max_op_len:
|
||||
if len(shellcode) > objdump.count('\n') * max_op_len:
|
||||
return bytes(shellcode)
|
||||
|
||||
for mnemonic, op_str in opcodes:
|
||||
if mnemonic == 'nop':
|
||||
return bytes(shellcode)
|
||||
if objdump.count('nop'):
|
||||
return bytes(shellcode)
|
||||
|
||||
shellcode = bytearray(shellcode)
|
||||
shellcode += b'\x90'
|
||||
|
|
|
@ -6,9 +6,6 @@ from sqlalchemy import LargeBinary, Column, ForeignKey, Integer, String, DateTim
|
|||
from sqlalchemy.ext.declarative import declarative_base
|
||||
from sqlalchemy.orm import Session, relationship, backref
|
||||
from sqlalchemy.orm.collections import attribute_mapped_collection
|
||||
import json
|
||||
|
||||
from .disassemble import objdump
|
||||
|
||||
now = '{0:%Y%m%dT%H%M%S}'.format(datetime.utcnow())
|
||||
Base = declarative_base()
|
||||
|
@ -43,7 +40,6 @@ class ScrapNode(Base):
|
|||
self.image = child
|
||||
self.length = len(child)
|
||||
self.sha1sum
|
||||
self.objdump = objdump(child)
|
||||
|
||||
def __repr__(self):
|
||||
values = {
|
||||
|
|
13
sins/run.py
13
sins/run.py
|
@ -10,6 +10,7 @@ import logging
|
|||
|
||||
from .mutation import generation, mutate, seed_shell, growth
|
||||
from .orm import db_config, ScrapNode
|
||||
from .disassemble import objdump
|
||||
|
||||
|
||||
def sins():
|
||||
|
@ -94,15 +95,21 @@ def sins():
|
|||
lineage += 1
|
||||
continue
|
||||
|
||||
if not result:
|
||||
if result != len(scrap):
|
||||
lineage += 1
|
||||
continue
|
||||
|
||||
scrap = growth(shellcode=scrap, length=result)
|
||||
opcodes = objdump(scrap)
|
||||
ops_count = opcodes.count('\n')
|
||||
|
||||
logger.debug({'result': result, 'ops': ops_count})
|
||||
|
||||
scrap = growth(shellcode=scrap, objdump=opcodes)
|
||||
|
||||
parent = ScrapNode(child=scrap, parent_id=parent.id)
|
||||
parent.objdump = opcodes
|
||||
session.add(parent)
|
||||
session.commit()
|
||||
|
||||
logger.info(f'scrap:\n{parent}')
|
||||
logger.info(parent)
|
||||
lineage = 0
|
||||
|
|
Loading…
Reference in New Issue