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: 232
Members: 0
Total: 232
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 -> All other software -> Cutenews <= 1.4.5 admin password md5 hash fetch exploit Goto page Previous1, 2, 3, 4Next
Post new topicReply to topic View previous topic :: View next topic
PostPosted: Sun Feb 03, 2008 8:55 pm Reply with quote
pexli
Valuable expert
Valuable expert
Joined: May 24, 2007
Posts: 665
Location: Bulgaria




Delete everything from your PC reboot and when install xammp.I install this many times and everything working very nice.
View user's profile Send private message
PostPosted: Mon Feb 04, 2008 2:07 am Reply with quote
Zone
Beginner
Beginner
Joined: Feb 03, 2008
Posts: 3




koko wrote:
Delete everything from your PC reboot and when install xammp.I install this many times and everything working very nice.

This is a fresh install, fresh windows, fresh drive.
View user's profile Send private message Visit poster's website
PostPosted: Thu Mar 06, 2008 2:18 am Reply with quote
Gibs
Beginner
Beginner
Joined: Mar 06, 2008
Posts: 3




EDIT======

Thanks!Works like a charm.Waraxe you rock ^_^

Plus,I was using cutenews myself,so thanks for this tip.I guess,since you use phpbb2,that has less vuln. Very Happy
View user's profile Send private message
PostPosted: Thu Mar 06, 2008 2:01 pm Reply with quote
waraxe
Site admin
Site admin
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




Gibs wrote:
EDIT======

Thanks!Works like a charm.Waraxe you rock ^_^

Plus,I was using cutenews myself,so thanks for this tip.I guess,since you use phpbb2,that has less vuln. Very Happy


I am using rewritten-from-scratch phpnuke 7.x with integrated phpbb and i was reviewing all the source code before putting this website online. So i'm sure that there is no big security flaws right now Smile
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Fri Mar 07, 2008 1:47 pm Reply with quote
DZ-015
Beginner
Beginner
Joined: Mar 07, 2008
Posts: 2




hi waraxe, first of all respect for your tool and support

I got a problem - I know that the url that I target is correct and accessible with the browser, but I get something like that:
Code:

user@domain:~$ php /home/user/cutemd5.php
Validating target URL
Target URL not valid!user@domain:~$

I'm running the script on my laptop with the target in the internet, in my current location theres a lame filter to block "inappropriate" sites, including my training target - is it possible that this might be the case? and if yes, any advice on how to set up a proxy for the script? (i'm using TOR for the browser, and for now I could use TOR network without abusing it - the target is run by my friend and its a PoC attack)

btw, a tip for debian/ubuntu user who run into the problem with curl - no need do compile php :] use:

Code:
sudo apt-get install php5-curl
View user's profile Send private message
PostPosted: Fri Mar 07, 2008 3:56 pm Reply with quote
waraxe
Site admin
Site admin
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




I think, that best way is to instruct curl to use proxy, something like:

Code:

curl_setopt($ch, CURLOPT_PROXY, 'proxy_ip:proxy_port');


or

Code:

curl_setopt ($ch, CURLPROXY_HTTP, 'http://host:port');


More info in php manual comments section:

http://ee.php.net/curl

Smile
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Sun Apr 27, 2008 11:22 am Reply with quote
MEGAHERTZ
Beginner
Beginner
Joined: Apr 26, 2008
Posts: 3




download this exploit. But to work it he refuses Sad
Gives out such mistake error

Fatal error: Call to undefined function: curl_init() in z:\home\megahertz.ru\www\exploit.php on line 227

What to do make?

sorry for mine english. I Russian


icq 48-66-48-25
View user's profile Send private message
PostPosted: Sun Apr 27, 2008 11:36 am Reply with quote
waraxe
Site admin
Site admin
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




MEGAHERTZ wrote:
download this exploit. But to work it he refuses Sad
Gives out such mistake error

Fatal error: Call to undefined function: curl_init() in z:\home\megahertz.ru\www\exploit.php on line 227

What to do make?

sorry for mine english. I Russian


icq 48-66-48-25


You need to activate curl extension in php.

Search for "php.ini" file, probably in Windows folder.
There is a text line:

Code:

;extension=php_curl.dll



Uncomment it like this:

Code:

extension=php_curl.dll


This should help Smile
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Sun Apr 27, 2008 11:42 am Reply with quote
MEGAHERTZ
Beginner
Beginner
Joined: Apr 26, 2008
Posts: 3




waraxe wrote:
MEGAHERTZ wrote:
download this exploit. But to work it he refuses Sad
Gives out such mistake error

Fatal error: Call to undefined function: curl_init() in z:\home\megahertz.ru\www\exploit.php on line 227

What to do make?

sorry for mine english. I Russian


icq 48-66-48-25


You need to activate curl extension in php.

Search for "php.ini" file, probably in Windows folder.
There is a text line:

Code:

;extension=php_curl.dll



Uncomment it like this:

Code:

extension=php_curl.dll


This should help Smile






yeah Smile it's OK)) thank!!!
View user's profile Send private message
PostPosted: Thu May 08, 2008 10:38 pm Reply with quote
tommyturner2007
Beginner
Beginner
Joined: May 09, 2008
Posts: 1




Hey Guy's

Just found this site on the net Very Happy

I am returning error "Pretest 1 failed - Wrong username?" On all my searches however is correct username.

Can anyone suggest why this happens?
View user's profile Send private message
PostPosted: Thu May 15, 2008 3:03 am Reply with quote
Terminal
Beginner
Beginner
Joined: May 15, 2008
Posts: 4




Hey, at first i had problems with the curl_dll but i fixed that by pasting the curl.dll file into the php main foler.

Now when i run cutemd5 i get "Target URL Not Valid" i know it is valid because its accessible and i tried two different forums with the same result.

Help would be appreciated.
View user's profile Send private message
PostPosted: Sun May 18, 2008 10:27 am Reply with quote
Terminal
Beginner
Beginner
Joined: May 15, 2008
Posts: 4




anyone please?
View user's profile Send private message
PostPosted: Sun May 18, 2008 11:30 am Reply with quote
waraxe
Site admin
Site admin
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




Look for this code fragment:

Code:

// Target URL valid?
xecho("Validating target URL");
if(strpos(make_get($GLOBALS['target']), 'search_in_archives') === false)
{
die('Target URL not valid!');
}
xecho("URL is valid");


and disable it by commenting out the "die()" function:

Code:

// Target URL valid?
xecho("Validating target URL");
if(strpos(make_get($GLOBALS['target']), 'search_in_archives') === false)
{
//die('Target URL not valid!');
}
xecho("URL is valid");
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Sun May 18, 2008 2:31 pm Reply with quote
Terminal
Beginner
Beginner
Joined: May 15, 2008
Posts: 4




Okay thanks that helped a little but now i get
URL is Valid
Request Failed!
Sleeping 1 Seconds
Awake...
Retry #2

and it keeps going adding a second and a retry everytime.

until #10 when its gives fatal error and stops.


Last edited by Terminal on Mon May 19, 2008 2:08 am; edited 1 time in total
View user's profile Send private message
PostPosted: Sun May 18, 2008 2:59 pm Reply with quote
Rivalo
Beginner
Beginner
Joined: May 18, 2008
Posts: 1




ehh can cutenews logs your ip when you hack it and logging it
AND DELETE EVERYTING Twisted Evil ???
View user's profile Send private message
Cutenews <= 1.4.5 admin password md5 hash fetch exploit
www.waraxe.us Forum Index -> All other software
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 3 of 4
Goto page Previous1, 2, 3, 4Next
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.390 Seconds