본문 바로가기
728x90
반응형

전체 글395

how to extract python code from pyinstaller 보호되어 있는 글 입니다. 2017. 4. 14.
gef https://github.com/hugsy/gef 좋은 듯. sudo pip install keystone-engine 에서 계속 에러가 발생한다면, sudo apt install cmake 한번 해보자. 2017. 4. 11.
GLIBCXX_3.421 not found ./Wandere_bits: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by ./Wandere_bits)./Wandere_bits: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by ./Wandere_bits) 위와 같은 오류가 발생한다면 sudo apt-get install libstdc++6 위와 같이 libstdc++6을 설치해준다. 이래도 안 된다면 sudo add-apt-repository ppa:ubuntu-toolchain-r/test sudo apt-get updates.. 2017. 4. 11.
[Codegate 2017] EasyCrack 101 보호되어 있는 글 입니다. 2017. 4. 10.
Python GetProcAddress 12345678910111213import sysfrom ctypes import *import ctypesdef usage(): print "\n Usage : %s [dll] [proc]" % sys.argv[0] sys.exit() target_dll = "kernel32.dll"target_function = "WinExec"dll = windll.LoadLibrary(target_dll)kernel32 = windll.LoadLibrary("kernel32.dll")function = kernel32.GetProcAddress(c_ulonglong(dll._handle), b"WinExec")print "[##] Find Address : %s(%s) : 0x%08x" % (target_dll,.. 2017. 2. 23.
[Codegate 2017] angrybird 보호되어 있는 글 입니다. 2017. 2. 10.
자주 사용하는 mysql DB 명령어 DB 유저 생성create user 'dbuser'@'localhost' identified by 'password'; DB 생성create database dbname; DB 권한 설정grant all privileges on `dbname`.* to dbuser@localhost identified by 'password' with grant option; DB 유저 삭제DROP USER 'dbuser'@'localhost'; DB 삭제drop database dbname DB 적용flush privileges; Table 생성create table account (idx INT(4) NOT NULL AUTO_INCREMENT,name VARCHAR(20) NOT NULL,id VARCHAR(20) .. 2017. 2. 4.
XAMPP Apache Error 오후 6:00:26 [Apache] Attempting to start Apache app...오후 6:00:27 [Apache] Status change detected: running오후 6:00:27 [Apache] Status change detected: stopped오후 6:00:27 [Apache] Error: Apache shutdown unexpectedly.오후 6:00:27 [Apache] This may be due to a blocked port, missing dependencies, 오후 6:00:27 [Apache] improper privileges, a crash, or a shutdown by another method.오후 6:00:27 [Apache] Press th.. 2017. 1. 22.
IL 코드 보기 C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6.1 Tools 여기에 ildasm.exe 라는 프로그램이 있다. 이런 식으로 나오는데 길이가 나와서 개꿀. Reversing.kr의 CSharp 문제 풀 때 유용하다. 2017. 1. 15.
Microsoft Visual C++ 2010 재배포 가능 패키지 mfc100u.dll이 없다고 나올 때 해결방법. 64bit : https://www.microsoft.com/en-us/download/details.aspx?id=14632 32bit : https://www.microsoft.com/en-us/download/details.aspx?id=5555 2017. 1. 12.
useful sites list 보호되어 있는 글 입니다. 2016. 12. 29.
제 13회 HDCON 해킹방어대회 2016. 12. 6.
728x90
반응형