开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 0 Fork 3

github-mysync/qiling

forked from qiling/qiling
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
dev
分支 (17)
标签 (10)
dev
master
ida_plugin_enhance
fix_pipe
uc2afl
old_dev
fix-windows-ci
mcu
dev_before_mcu
dev_old
revert-734-fix-new-thread-id
refactor
revert-639-dev
revert-612-dev
dev_official
revert-544-x64_partial_regs
demigod
1.4.1
1.4.0
1.3.0
1.2.4.1
1.2.4
1.2.3
1.2.2
1.2.1
1.2
1.1.3
dev
分支 (17)
标签 (10)
dev
master
ida_plugin_enhance
fix_pipe
uc2afl
old_dev
fix-windows-ci
mcu
dev_before_mcu
dev_old
revert-734-fix-new-thread-id
refactor
revert-639-dev
revert-612-dev
dev_official
revert-544-x64_partial_regs
demigod
1.4.1
1.4.0
1.3.0
1.2.4.1
1.2.4
1.2.3
1.2.2
1.2.1
1.2
1.1.3
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
dev
分支 (17)
标签 (10)
dev
master
ida_plugin_enhance
fix_pipe
uc2afl
old_dev
fix-windows-ci
mcu
dev_before_mcu
dev_old
revert-734-fix-new-thread-id
refactor
revert-639-dev
revert-612-dev
dev_official
revert-544-x64_partial_regs
demigod
1.4.1
1.4.0
1.3.0
1.2.4.1
1.2.4
1.2.3
1.2.2
1.2.1
1.2
1.1.3
qiling
/
tests
/
test_pe.py
qiling
/
tests
/
test_pe.py
test_pe.py 21.40 KB
一键复制 编辑 原始数据 按行查看 历史
Bet4 提交于 2021年11月18日 22:42 +08:00 . Support file operations and upxed PE file on Windows
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618
#!/usr/bin/env python3
#
# Cross Platform and Multi Architecture Advanced Binary Emulation Framework
#
import os, random, sys, unittest, logging
import string as st
sys.path.append("..")
from qiling import Qiling
from qiling.const import *
from qiling.exception import *
from qiling.extensions import pipe
from qiling.loader.pe import QlPeCache
from qiling.os.const import *
from qiling.os.windows.fncc import *
from qiling.os.windows.utils import *
from qiling.os.mapper import QlFsMappedObject
# This is intended.
# See https://stackoverflow.com/questions/8804830/python-multiprocessing-picklingerror-cant-pickle-type-function
import multiprocess as mb
import traceback
# On Windows, the CPython GC is too conservative and may hold too
# many Unicorn objects (nearly 16GB) until free-ing them which may
# cause failure during tests.
#
# Use subprocess to make sure resources are free-ed when the subprocess
# is killed.
class QLWinSingleTest:
def __init__(self, test):
self._test = test
def _run_test(self, results):
try:
results['result'] = self._test()
except Exception as e:
tb = traceback.format_exc()
results['exception'] = tb
results['result'] = False
def run(self):
with mb.Manager() as m:
results = m.dict()
p = mb.Process(target=QLWinSingleTest._run_test, args=(self, results))
p.start()
p.join()
if "exception" not in results:
return results['result']
else:
raise RuntimeError(f"\n\nGot an exception during subprocess:\n\n{results['exception']}")
class TestOut:
def __init__(self):
self.output = {}
def write(self, string):
key, value = string.split(b': ', 1)
assert key not in self.output
self.output[key] = value
return len(string)
class PETest(unittest.TestCase):
def test_pe_win_x8664_hello(self):
def _t():
ql = Qiling(["../examples/rootfs/x8664_windows/bin/x8664_hello.exe"], "../examples/rootfs/x8664_windows",
verbose=QL_VERBOSE.DEFAULT)
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_hello(self):
def _t():
ql = Qiling(["../examples/rootfs/x86_windows/bin/x86_hello.exe"], "../examples/rootfs/x86_windows",
verbose=QL_VERBOSE.DEFAULT, profile="profiles/append_test.ql")
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x8664_file_upx(self):
def _t():
ql = Qiling(["../examples/rootfs/x8664_windows/bin/x8664_file_upx.exe"], "../examples/rootfs/x8664_windows",
verbose=QL_VERBOSE.DEFAULT)
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_file_upx(self):
def _t():
ql = Qiling(["../examples/rootfs/x86_windows/bin/x86_file_upx.exe"], "../examples/rootfs/x86_windows",
verbose=QL_VERBOSE.DEFAULT)
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_uselessdisk(self):
def _t():
if 'QL_FAST_TEST' in os.environ:
return
class Fake_Drive(QlFsMappedObject):
def read(self, size):
return random.randint(0, 256)
def write(self, bs):
print(bs)
return len(bs)
def fstat(self):
return -1
def close(self):
return 0
ql = Qiling(["../examples/rootfs/x86_windows/bin/UselessDisk.bin"], "../examples/rootfs/x86_windows",
verbose=QL_VERBOSE.DEBUG)
ql.add_fs_mapper(r"\\.\PHYSICALDRIVE0", Fake_Drive())
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_gandcrab(self):
def _t():
if 'QL_FAST_TEST' in os.environ:
return
def stop(ql, default_values):
print("Ok for now")
ql.emu_stop()
def randomize_config_value(ql, key, subkey):
# https://en.wikipedia.org/wiki/Volume_serial_number
# https://www.digital-detective.net/documents/Volume%20Serial%20Numbers.pdf
if key == "VOLUME" and subkey == "serial_number":
month = random.randint(0, 12)
day = random.randint(0, 30)
first = hex(month)[2:] + hex(day)[2:]
seconds = random.randint(0, 60)
milli = random.randint(0, 100)
second = hex(seconds)[2:] + hex(milli)[2:]
first_half = int(first, 16) + int(second, 16)
hour = random.randint(0, 24)
minute = random.randint(0, 60)
third = hex(hour)[2:] + hex(minute)[2:]
year = random.randint(2000, 2020)
second_half = int(third, 16) + year
result = int(hex(first_half)[2:] + hex(second_half)[2:], 16)
ql.os.profile[key][subkey] = str(result)
elif key == "USER" and subkey == "username":
length = random.randint(0, 15)
new_name = ""
for i in range(length):
new_name += random.choice(st.ascii_lowercase + st.ascii_uppercase)
old_name = ql.os.profile[key][subkey]
# update paths
ql.os.profile[key][subkey] = new_name
for path in ql.os.profile["PATH"]:
val = ql.os.profile["PATH"][path].replace(old_name, new_name)
ql.os.profile["PATH"][path] = val
elif key == "SYSTEM" and subkey == "computername":
length = random.randint(0, 15)
new_name = ""
for i in range(length):
new_name += random.choice(st.ascii_lowercase + st.ascii_uppercase)
ql.os.profile[key][subkey] = new_name
else:
raise QlErrorNotImplemented("API not implemented")
ql = Qiling(["../examples/rootfs/x86_windows/bin/GandCrab502.bin"], "../examples/rootfs/x86_windows",
verbose=QL_VERBOSE.DEBUG, profile="profiles/windows_gandcrab_admin.ql")
default_user = ql.os.profile["USER"]["username"]
default_computer = ql.os.profile["SYSTEM"]["computername"]
ql.hook_address(stop, 0x40860f, user_data=(default_user, default_computer))
randomize_config_value(ql, "USER", "username")
randomize_config_value(ql, "SYSTEM", "computername")
randomize_config_value(ql, "VOLUME", "serial_number")
num_syscalls_admin = ql.os.utils.syscalls_counter
ql.run()
del ql
# RUN AS USER
ql = Qiling(["../examples/rootfs/x86_windows/bin/GandCrab502.bin"], "../examples/rootfs/x86_windows", profile="profiles/windows_gandcrab_user.ql")
ql.run()
num_syscalls_user = ql.os.utils.syscalls_counter
# let's check that gandcrab behave takes a different path if a different environment is found
if num_syscalls_admin == num_syscalls_user:
return False
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_multithread(self):
def _t():
thread_id = None
def ThreadId_onEnter(ql, address, params):
nonlocal thread_id
thread_id = ql.os.thread_manager.cur_thread.id
return address, params
ql = Qiling(["../examples/rootfs/x86_windows/bin/MultiThread.exe"], "../examples/rootfs/x86_windows")
ql.set_api("GetCurrentThreadId", ThreadId_onEnter, QL_INTERCEPT.ENTER)
ql.run()
if not ( 1<= thread_id < 255):
return False
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_clipboard(self):
def _t():
ql = Qiling(["../examples/rootfs/x8664_windows/bin//x8664_clipboard_test.exe"], "../examples/rootfs/x8664_windows")
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_tls(self):
def _t():
ql = Qiling(["../examples/rootfs/x8664_windows/bin/x8664_tls.exe"], "../examples/rootfs/x8664_windows")
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_getlasterror(self):
def _t():
ql = Qiling(["../examples/rootfs/x86_windows/bin/GetLastError.exe"], "../examples/rootfs/x86_windows")
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_regdemo(self):
def _t():
ql = Qiling(["../examples/rootfs/x86_windows/bin/RegDemo.exe"], "../examples/rootfs/x86_windows")
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x8664_fls(self):
def _t():
ql = Qiling(["../examples/rootfs/x8664_windows/bin/Fls.exe"], "../examples/rootfs/x8664_windows", verbose=QL_VERBOSE.DEFAULT)
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_return_from_main_stackpointer(self):
def _t():
ql = Qiling(["../examples/rootfs/x86_windows/bin/return_main.exe"], "../examples/rootfs/x86_windows", libcache=True, stop_on_stackpointer=True)
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_return_from_main_exit_trap(self):
def _t():
ql = Qiling(["../examples/rootfs/x86_windows/bin/return_main.exe"], "../examples/rootfs/x86_windows", libcache=True, stop_on_exit_trap=True)
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x8664_return_from_main_stackpointer(self):
def _t():
ql = Qiling(["../examples/rootfs/x8664_windows/bin/x8664_return_main.exe"], "../examples/rootfs/x8664_windows", libcache=True, stop_on_stackpointer=True)
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x8664_return_from_main_exit_trap(self):
def _t():
ql = Qiling(["../examples/rootfs/x8664_windows/bin/x8664_return_main.exe"], "../examples/rootfs/x8664_windows", libcache=True, stop_on_exit_trap=True)
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_wannacry(self):
def _t():
if 'QL_FAST_TEST' in os.environ:
return
def stop(ql):
ql.log.info("killerswtichfound")
ql.log.setLevel(logging.CRITICAL)
ql.log.info("No Print")
ql.emu_stop()
ql = Qiling(["../examples/rootfs/x86_windows/bin/wannacry.bin"], "../examples/rootfs/x86_windows")
ql.hook_address(stop, 0x40819a)
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_NtQueryInformationSystem(self):
def _t():
ql = Qiling(
["../examples/rootfs/x86_windows/bin/NtQuerySystemInformation.exe"],
"../examples/rootfs/x86_windows")
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_al_khaser(self):
def _t():
if 'QL_FAST_TEST' in os.environ:
return
ql = Qiling(["../examples/rootfs/x86_windows/bin/al-khaser.bin"], "../examples/rootfs/x86_windows")
# The hooks are to remove the prints to file. It crashes. will debug why in the future
def results(ql):
if ql.reg.ebx == 1:
print("BAD")
else:
print("GOOD ")
ql.reg.eip = 0x402ee4
#ql.hook_address(results, 0x00402e66)
# the program alloc 4 bytes and then tries to write 0x2cc bytes.
# I have no idea of why this code should work without this patch
ql.patch(0x00401984, b'\xb8\x04\x00\x00\x00')
def end(ql):
print("We are finally done")
ql.emu_stop()
ql.hook_address(end, 0x004016ae)
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x8664_customapi(self):
def _t():
set_api = None
set_api_onenter = None
set_api_onexit = None
@winsdkapi(cc=CDECL, params={
"str" : STRING
})
def my_puts64(ql: Qiling, address: int, params):
nonlocal set_api
print(f'[oncall] my_puts64: params = {params}')
params["str"] = "Hello Hello Hello"
ret = len(params["str"])
set_api = ret
return ret
def my_onenter(ql: Qiling, address: int, params):
nonlocal set_api_onenter
print(f'[onenter] my_onenter: params = {params}')
set_api_onenter = len(params["str"])
def my_onexit(ql: Qiling, address: int, params, retval: int):
nonlocal set_api_onexit
print(f'[onexit] my_onexit: params = {params}')
set_api_onexit = len(params["str"])
def my_sandbox(path, rootfs):
nonlocal set_api, set_api_onenter, set_api_onexit
ql = Qiling(path, rootfs, verbose=QL_VERBOSE.DEBUG)
ql.set_api("puts", my_onenter, QL_INTERCEPT.ENTER)
ql.set_api("puts", my_puts64, QL_INTERCEPT.CALL)
ql.set_api("puts", my_onexit, QL_INTERCEPT.EXIT)
ql.run()
if 12 != set_api_onenter:
return False
if 17 != set_api:
return False
if 17 != set_api_onexit:
return False
del ql
return True
return my_sandbox(["../examples/rootfs/x8664_windows/bin/x8664_hello.exe"], "../examples/rootfs/x8664_windows")
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_argv(self):
def _t():
target_txt = None
def check_print(ql: Qiling, address: int, params):
nonlocal target_txt
ql.os.fcall = ql.os.fcall_select(CDECL)
params = ql.os.resolve_fcall_params({
'_Options' : PARAM_INT64,
'_Stream' : POINTER,
'_Format' : STRING,
'_Locale' : DWORD,
'_ArgList' : POINTER
})
format = params['_Format']
arglist = params['_ArgList']
count = format.count("%")
fargs = [ql.unpack(ql.mem.read(arglist + i * ql.pointersize, ql.pointersize)) for i in range(count)]
target_txt = ""
try:
target_txt = ql.mem.string(fargs[1])
except:
pass
return address, params
ql = Qiling(["../examples/rootfs/x86_windows/bin/argv.exe"], "../examples/rootfs/x86_windows")
ql.set_api('__stdio_common_vfprintf', check_print, QL_INTERCEPT.ENTER)
ql.run()
if target_txt.find("argv.exe"):
target_txt = "argv.exe"
if "argv.exe" != target_txt:
return False
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_crackme(self):
def _t():
def force_call_dialog_func(ql):
# get DialogFunc address
lpDialogFunc = ql.unpack32(ql.mem.read(ql.reg.esp - 0x8, 4))
# setup stack for DialogFunc
ql.stack_push(0)
ql.stack_push(1001)
ql.stack_push(273)
ql.stack_push(0)
ql.stack_push(0x0401018)
# force EIP to DialogFunc
ql.reg.eip = lpDialogFunc
def our_sandbox(path, rootfs):
ql = Qiling(path, rootfs)
ql.patch(0x004010B5, b'\x90\x90')
ql.patch(0x004010CD, b'\x90\x90')
ql.patch(0x0040110B, b'\x90\x90')
ql.patch(0x00401112, b'\x90\x90')
ql.os.stdin = pipe.SimpleStringBuffer()
ql.os.stdin.write(b"Ea5yR3versing\n")
ql.hook_address(force_call_dialog_func, 0x00401016)
ql.run()
del ql
our_sandbox(["../examples/rootfs/x86_windows/bin/Easy_CrackMe.exe"], "../examples/rootfs/x86_windows")
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x86_cmdln(self):
def _t():
ql = Qiling(
["../examples/rootfs/x86_windows/bin/cmdln32.exe", 'arg1', 'arg2 with spaces'],
"../examples/rootfs/x86_windows")
ql.os.stdout = TestOut()
ql.run()
expected_string = b'<C:\\Users\\Qiling\\Desktop\\cmdln32.exe arg1 "arg2 with spaces">\n'
expected_keys = [b'_acmdln', b'_wcmdln', b'__p__acmdln', b'__p__wcmdln', b'GetCommandLineA', b'GetCommandLineW']
for key in expected_keys:
if not (key in ql.os.stdout.output):
return False
if expected_string != ql.os.stdout.output[key]:
return False
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
def test_pe_win_x8664_cmdln(self):
def _t():
ql = Qiling(
["../examples/rootfs/x8664_windows/bin/cmdln64.exe", 'arg1', 'arg2 with spaces'],
"../examples/rootfs/x8664_windows")
ql.os.stdout = TestOut()
ql.run()
expected_string = b'<C:\\Users\\Qiling\\Desktop\\cmdln64.exe arg1 "arg2 with spaces">\n'
expected_keys = [b'_acmdln', b'_wcmdln', b'GetCommandLineA', b'GetCommandLineW']
for key in expected_keys:
if not (key in ql.os.stdout.output):
return False
if expected_string != ql.os.stdout.output[key]:
return False
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
class RefreshCache(QlPeCache):
def restore(self, path):
# If the cache entry exists, delete it
fcache = self.create_filename(path)
if os.path.exists(fcache):
os.remove(fcache)
return super().restore(path)
class TestCache(QlPeCache):
def __init__(self, testcase):
super().__init__()
self.testcase = testcase
def restore(self, path):
entry = super().restore(path)
self.testcase.assertTrue(entry is not None) # Check that it loaded a cache entry
if path.endswith('msvcrt.dll'):
self.testcase.assertEqual(len(entry.cmdlines), 2)
else:
self.testcase.assertEqual(len(entry.cmdlines), 0)
self.testcase.assertIsInstance(entry.data, bytearray)
return entry
def save(self, path, entry):
self.testcase.assertFalse(True) # This should not be called!
def test_pe_win_x8664_libcache(self):
def _t():
# First force the cache to be recreated
ql = Qiling(["../examples/rootfs/x8664_windows/bin/cmdln64.exe",
'arg1', 'arg2 with spaces'],
"../examples/rootfs/x8664_windows",
libcache=PETest.RefreshCache(),
verbose=QL_VERBOSE.DEFAULT)
ql.run()
del ql
# Now run with a special cache that validates that the 'real' cache will load,
# and that the file is not written again
ql = Qiling(["../examples/rootfs/x8664_windows/bin/cmdln64.exe",
'arg1', 'arg2 with spaces'],
"../examples/rootfs/x8664_windows",
libcache=PETest.TestCache(self),
verbose=QL_VERBOSE.DEFAULT)
ql.run()
del ql
return True
self.assertTrue(QLWinSingleTest(_t).run())
if __name__ == "__main__":
unittest.main()
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

Qiling Advanced Binary Emulation Framework
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/github-mysync/qiling.git
git@gitee.com:github-mysync/qiling.git
github-mysync
qiling
qiling
dev
点此查找更多帮助

搜索帮助

仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /