Skip to content

Commit 0c24bb3

Browse files
author
jesus
committed
fix
1 parent b4190ee commit 0c24bb3

File tree

4 files changed

+76
-6
lines changed

4 files changed

+76
-6
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ add_executable(predator
2626
r2.cpp)
2727

2828

29-
target_link_libraries(predator "r_socket")
29+
target_link_libraries(predator "r_socket" "r_util" "dl")
3030

3131

cmake/predator

-88 Bytes
Binary file not shown.

r2.cpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,17 @@ R2::~R2() {
2222

2323
void R2::load(Genotype *g) {
2424
assert(g->size() == 0x20);
25-
25+
2626
char *buff = g->read();
2727
char hex[68];
28+
memset(hex, 0, 68);
2829
hex[0] = 'w'; hex[1] = 'x'; hex[2] = ' ';
2930
for (int i; i<32; i++) {
30-
char *p = &hex[i*2+3];
31-
snprintf(p, 3, "%.2x", *((unsigned char *)&buff[i]));
31+
sprintf(hex, "%s %.2x", hex, *((unsigned char *)&buff[i]));
3232
}
3333
hex[67] = 0x00;
3434

35+
cout << hex << endl;
3536
r2pipe_cmd(this->r2, hex);
3637
}
3738

@@ -67,9 +68,9 @@ void R2::print_asm(void) {
6768
}
6869

6970
cout << "showing r2pipe cmd pD" << endl;
70-
71+
printf("this->r2: %p\n", this->r2);
7172
out = r2pipe_cmd(this->r2, "pD 0x20"); // TODO: don't hardcode the size
72-
73+
7374
printf("%s\n", out);
7475

7576
free(out);

stats

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
1,51,3.06
2+
2,51,39.78
3+
3,51,49.98
4+
4,51,50.49
5+
5,51,50.49
6+
6,51,50.49
7+
7,51,50.49
8+
8,51,50.49
9+
9,51,50.49
10+
10,51,49.98
11+
11,51,50.49
12+
12,51,50.49
13+
13,51,50.49
14+
14,51,51
15+
15,51,50.49
16+
16,51,50.49
17+
17,51,50.49
18+
18,51,50.49
19+
19,51,50.49
20+
20,51,50.49
21+
21,51,50.49
22+
22,51,50.49
23+
23,51,50.49
24+
24,51,50.49
25+
25,51,50.49
26+
26,51,50.49
27+
27,51,50.49
28+
28,51,50.49
29+
29,51,50.49
30+
30,51,49.98
31+
31,51,50.49
32+
32,51,50.49
33+
33,51,50.49
34+
34,51,50.49
35+
35,51,50.49
36+
36,51,50.49
37+
37,51,50.49
38+
38,51,50.49
39+
39,51,51
40+
40,51,50.49
41+
41,51,49.98
42+
42,51,50.49
43+
43,51,50.49
44+
44,51,50.49
45+
45,51,50.49
46+
46,51,49.98
47+
47,51,50.49
48+
48,51,50.49
49+
49,51,50.49
50+
50,51,50.49
51+
51,51,49.98
52+
52,51,50.49
53+
53,51,50.49
54+
54,51,50.49
55+
55,51,50.49
56+
56,51,50.49
57+
57,51,50.49
58+
58,51,50.49
59+
59,51,49.98
60+
60,51,50.49
61+
61,51,50.49
62+
62,51,50.49
63+
63,51,50.49
64+
64,51,50.49
65+
65,51,51
66+
66,51,50.49
67+
67,51,50.49
68+
68,51,50.49
69+
69,51,50.49

0 commit comments

Comments
 (0)