본문 바로가기

Reversing/▷ ETC

IDA bind: Address already in use

IDA bind: Address already in use error solution


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
gyeongje@gyeongjePC:~/Desktop$ ps | grep linux_server
 
gyeongje@gyeongjePC:~/Desktop$ ./linux_server
IDA Linux 32-bit remote debug server(ST) v1.19. Hex-Rays (c) 2004-2015
bind: Address already in use
 
gyeongje@gyeongjePC:~/Desktop$ ps -al
F S   UID    PID   PPID  C PRI  NI ADDR SZ WCHAN  TTY          TIME CMD
0 S  1000   6338   6296  0  80   0 - 13881 inet_c pts/19   00:00:00 linux_server
0 R  1000   6454   5527  0  80   0 -  9316 -      pts/4    00:00:00 ps
 
gyeongje@gyeongjePC:~/Desktop$ kill -s 9 6338
 
gyeongje@gyeongjePC:~/Desktop$ ps -al
F S   UID    PID   PPID  C PRI  NI ADDR SZ WCHAN  TTY          TIME CMD
0 R  1000   6461   5527  0  80   0 -  9309 -      pts/4    00:00:00 ps
 
gyeongje@gyeongjePC:~/Desktop$ ./linux_server
IDA Linux 32-bit remote debug server(ST) v1.19. Hex-Rays (c) 2004-2015
Listening on port #23946...
cs


'Reversing > ▷ ETC' 카테고리의 다른 글

Arm, mips, ppc등 cross compile and excution  (1) 2018.03.12
Side Channel Attack using gdb  (0) 2018.02.16
hsdecomp error modification  (0) 2018.02.06
objdump 사용법  (1) 2018.02.01
[ch4n3 world] unlockshell  (2) 2018.01.22