Waraxe IT Security Portal
Login or Register
September 12, 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: 78
Members: 0
Total: 78
Full disclosure
CVE-2024-25286 - RedSys - A Cross-Site Request Forgery (CSRF) vulnerability was identified in the Authorization Method of 3DSecure 2.0
CVE-2024-25285 - RedSys - 3DSecure 2.0 is vulnerable to form action hijacking
CVE-2024-25284 - RedSys - Multiple reflected Cross-Site Scripting (XSS) vulnerabilities in the 3DS Authorization Method of 3DSecure 2.0
CVE-2024-25283 - RedSys - Multiple reflected Cross-Site Scripting (XSS) vulnerabilities exist in the 3DS Authorization Challenge of 3DSecure 2.0
CVE-2024-25282 - RedSys - 3DSecure 2.0 is vulnerable to Cross-Site Scripting (XSS) in its 3DSMethod Authentication
KL-001-2024-012: VICIdial Authenticated Remote Code Execution
KL-001-2024-011: VICIdial Unauthenticated SQL Injection
OXAS-ADV-2024-0005: OX App Suite Security Advisory
[SYSS-2024-030]: C-MOR Video Surveillance - OS Command Injection (CWE-78)
[SYSS-2024-029]: C-MOR Video Surveillance - Dependency on Vulnerable Third-Party Component (CWE-1395)
[SYSS-2024-028]: C-MOR Video Surveillance - Cleartext Storage of Sensitive Information (CWE-312)
[SYSS-2024-027]: C-MOR Video Surveillance - Improper Privilege Management (CWE-269)
[SYSS-2024-026]: C-MOR Video Surveillance - Unrestricted Upload of File with Dangerous Type (CWE-434)
[SYSS-2024-025]: C-MOR Video Surveillance - Relative Path Traversal (CWE-23)
Backdoor.Win32.Symmi.qua / Remote Stack Buffer Overflow (SEH)
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> PhpNuke -> php nuke 7.9 and mysql
Post new topicReply to topic View previous topic :: View next topic
php nuke 7.9 and mysql
PostPosted: Wed Mar 08, 2006 12:17 am Reply with quote
docetes
Beginner
Beginner
Joined: Mar 08, 2006
Posts: 2




hi,

i'm having a problem with my site... it was hacked. all the admins were deleted. i don't want to take the whole site off line and install it again so i was wondering if anyone could tell me how to create and delete a god admin from phpnuke 7.9 through mysql.

unsure whether this is the right section. Apologies if it isn't

Thanks
View user's profile Send private message
PostPosted: Wed Mar 08, 2006 2:27 am Reply with quote
waraxe
Site admin
Site admin
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




This can be done in many ways:

1. I saw somewhere specialized script for admin account recovery, search it @ google
2. Use phpmyadmin and create account manually
3. Use some other nuke installatsion, copy database table and insert it to the target database.

By the way, looking at source code from nuke:

Code:

$the_first = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_authors"));
if ($the_first == 0) {
if (!$name) {
include("header.php");
title("$sitename: "._ADMINISTRATION."");
OpenTable();
echo "<center><b>"._NOADMINYET."</b></center><br><br>"
."<form action=\"".$admin_file.".php\" method=\"post\">"
."<table border=\"0\">"
."<tr><td><b>"._NICKNAME.":</b></td><td><input type=\"text\" name=\"name\" size=\"30\" maxlength=\"25\"></td></tr>"
."<tr><td><b>"._HOMEPAGE.":</b></td><td><input type=\"text\" name=\"url\" size=\"30\" maxlength=\"255\" value=\"http://\"></td></tr>"
."<tr><td><b>"._EMAIL.":</b></td><td><input type=\"text\" name=\"email\" size=\"30\" maxlength=\"255\"></td></tr>"
."<tr><td><b>"._PASSWORD.":</b></td><td><input type=\"password\" name=\"pwd\" size=\"11\" maxlength=\"10\"></td></tr>"
."<tr><td colspan=\"2\">"._CREATEUSERDATA." <input type=\"radio\" name=\"user_new\" value=\"1\" checked>"._YES." ;; ;;<input type=\"radio\" name=\"user_new\" value=\"0\">"._NO."</td></tr>"
."<tr><td><input type=\"hidden\" name=\"fop\" value=\"create_first\">"
."<input type=\"submit\" value=\""._SUBMIT."\">"
."</td></tr></table></form>";
CloseTable();
include("footer.php");
}
switch($fop) {
case "create_first":
create_first($name, $url, $email, $pwd, $user_new);
break;
}
die();
}



Well, seems that if all the admin accounts are deleted, then phpnuke
must offer again the possibility to create first account, as it did right after fresh install.
Anyway, if you still got problems, let me know and i will help you.
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Fri Mar 10, 2006 6:40 pm Reply with quote
docetes
Beginner
Beginner
Joined: Mar 08, 2006
Posts: 2




no i think the fella who was at my site created his own god account. so i need to delete his account and create a new one
View user's profile Send private message
PostPosted: Sat Mar 11, 2006 5:11 pm Reply with quote
waraxe
Site admin
Site admin
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




docetes wrote:
no i think the fella who was at my site created his own god account. so i need to delete his account and create a new one


Ok, i wrote some very simple script for deleting all the admin accounts at once. After admins deletion you can recreate your first admin account.

This script can be downloaded from here:

http://www.waraxe.us/~kama/phpnuke/reset.zip

Just unzip and upload reset.php to nuke directory, where index.php, config.php and other files are. And after using remember to delete it ASAP.
Just for info, there is source code:

Code:

<?php
error_reporting(E_ALL);

$cfg_file = './config.php';

if(!is_file($cfg_file))
{
die('Cannot find config.php');
}

require($cfg_file);

$link = mysql_connect($dbhost,$dbuname,$dbpass) or die('Cannot connect to mysql ...');

mysql_select_db($dbname, $link) or die ('Cannot select database ...');

$sql = 'DELETE FROM ' . $prefix . '_authors';

$ret = mysql_query($sql, $link);

if($ret === FALSE)
{
$error = mysql_error();
echo "MySql error: $error <br />\n";
}
else
{
echo 'OK, reset done';
}


die();
?>


This is written in 5 minutes, so it is primitive script, but it will do what suppose to Very Happy

Feedback is welcome Smile
View user's profile Send private message Send e-mail Visit poster's website
php nuke 7.9 and mysql
www.waraxe.us Forum Index -> PhpNuke
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.128 Seconds