본문 바로가기

분류 전체보기

(154)
탈옥된 IOS frida실행시 재부팅현상 해결방안 https://github.com/frida/frida/issues/2916 Frida 16.4.5 Not working with Jailbroken iOS Version 15.8.2 using Dopamnie · Issue #2916 · frida/fridaHello Team, I installed the latest Frida from the repo build.frida.re. When I try to execute the command "frida-ps -U" from a Windows PC. The device crashed and rebooted after executing the command...github.comfrida 16.4. 버전 이상에서 발생하는 문제로 탈옥에 사용되는 도파민의 ..
리버싱 치트시트 RC4#include #include #include #define N 256 // 2^8void swap(unsigned char *a, unsigned char *b) { int tmp = *a; *a = *b; *b = tmp;}int KSA(char *key, unsigned char *S) { int len = strlen(key); int j = 0; for(int i = 0; i AES#include // CBC mode, for memset#include "aes.h"#define Nb 4#if defined(AES256) && (AES256 == 1) #define Nk 8 #define Nr 14#elif defined(AES192) &&..
크로스컴파일 gdb붙기 qemu-arm-static -L /usr/arm-linux-gnueabi -g 포트번호 ./실행파일gdb-multiarch 로접속pwndbg> set arc arm(옵션)pwndbg> target remote :포트file 실행파일경로info functions 로함수보고 b로 브포걸기
docker-compose 환경에서 DockerFile수정후 빌드하기 docker-compose.yml에 있는 build는 실행마다 하는것이 아닌 이미지나 컨테이너가 없을경우에만 실행하는것이였다. 그러므로 DockerFile을 수정했다면 이미지 컨테이너를 삭제후 docker-compose를 실행하면 된다. docker rm [컨테이너명] #rm 컨테이너 삭제명령어 docker rmi [이미지명] #rmi 이미지 삭제 명령어 docker-compose up
mac에서 커맨드로 도커데몬 실행 /Applications/Docker.app/Contents/MacOS/Docker & 이리하면 세션 종료시 꺼지기때문에 nohup을 사용한다 nohup /Applications/Docker.app/Contents/MacOS/Docker &
docker nginx에 무료 인증서 갱신하기 certbot certonly --nginx -d 도메인명 certbot을 이용해 certonly옵션으로 인증서를 발급해준다. /etc/letsencrypt/live/도메인명/fullchain.pem 대충 이경로에 생성됐다고 알려준다. 이제 이파일을 복사해주기만 하면된다. /docker/nginx/CA/도메인명/ 에 복사를 해줘야된다고 생각하지만 컨테이너 안에 반영을 해줘야 하기때문에 docer exec -it nginx서버 sh ex)docker exec -it ddc sh 명령어를 통해 nginx서버 안으로 들어가 /etc/nginx/CA/도메인명/ docker cp 명령어로 해당경로에 반영해주면 된다. docker cp ./도메인폴더명/ (컨테이너 아이디):/ 해당경로에 바로 복사해주고싶지만 권한문..
mysql 외래키 cascade설정 삭제 후 추가하기 mysql> select * from information_schema.table_constraints where table_name='테이블명'; 으로 키id확인 보통 테이블명_ibfk_1,이나 테이블명_ibk_1 이다. mysql> alter table 테이블명 drop foreign key 테이블명_ibfk_1; 으로 삭제 mysql> alter table 테이블명 add constraint 테이블명_ibfk_1 foreign key(테이블명에서 쓰는 외래키 이름) references db명.테이블명에서 쓰는 외래키 테이블(외래키 이름) on delete cascade on update cascade;
db 설계 보호되어 있는 글입니다.