Waraxe IT Security Portal
Login or Register
September 17, 2026
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: 542
Members: 0
Total: 542
Full disclosure
[0day-rubbish] Royal Server 5.04.50529.0 Local privilege escalation to LocalSystem on the execution path without credential override (7.2)
[0day-rubbish] core-admin 1.0.164 (build 16468) Systemic shell command injection via ineffective quote escaping (8.8)
[0day-rubbish] OP5 Monitor 9.20 Command injection surviving the CVE-2025-34115 patch (OPT-IN fix ineffective) (8.8)
[0day-rubbish] QuantaStor 6.8.3.018 Command injection in the alert-mail command via the smtpPassword field (8.8)
[0day-rubbish] SmarterMail 100.0.9693 (Build 9693) Antivirus command-line configuration executing as NT AUTHORITY\SYSTEM (7.2)
[0day-rubbish] Jitterbit Agent 12.8.1.6 (Docker jitterbit/agent:12.8.1.6) Unauthenticated SOAP with hard-coded credentials leading to OS command execution (9.8)
[0day-rubbish] Accurate Online Private Cloud on-prem (current) Unauthenticated Hessian deserialization leading to JNDI remote class loading (9.8)
[0day-rubbish] DBxtra .NET 13.1.1.0 Unauthenticated SOAP API to xp_cmdshell code execution (9.8)
**Subject:** CVE-2026-2035703: Tozed ZLT X300 5G CPE — Unauthenticated Remote Root Code Execution via TR-069 Command Injection (CVSS 9.8)
CVE-2026-52307: Stored XSS in 1CMS v5.6
HP Easy Start for macOS: CVE-2026-12554 / CVE-2026-12555 /CVE-2026-12556
Next.js 16.4.0-canary.13 Image Optimizer DNS Rebinding TOCTOU SSRF Still Exists
O-CMS 1.0.0 Authenticated OS Command Injection viaai_cli_script
Flextype v1.0.0-alpha.3 CMS registerShortcodes() Remote Code Execution via Attacker-Controlled File Inclusion
Flextype v1.0.0-alpha.3 Stored Fetch Shortcode Allows Server-Side Request Forgery
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> General discussion -> forum help :)
Post new topicReply to topic View previous topic :: View next topic
forum help :)
PostPosted: Sat May 17, 2008 11:29 am Reply with quote
dcole111
Beginner
Beginner
Joined: May 17, 2008
Posts: 4




hey guys. im new to this forum and im not sure if this is in the right section but yeah. i need some help with a forum.

i want a link, but to obtain it i need to click "thanks!"

is there a way to pass this? please tell me as i am really eager and u guys seem to know alot about this stuff hehe

so
please
get back to me ASAP

thanks again

~DyLLL
View user's profile Send private message
PostPosted: Sat May 17, 2008 11:49 am Reply with quote
waraxe
Site admin
Site admin
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




Depends. Look at html source code and try to find out, how stuff works. There can be javascript tricks, etc, but it may be bypassed. No guarantee though.
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Sat May 17, 2008 11:51 am Reply with quote
dcole111
Beginner
Beginner
Joined: May 17, 2008
Posts: 4




waraxe wrote:
Depends. Look at html source code and try to find out, how stuff works. There can be javascript tricks, etc, but it may be bypassed. No guarantee though.


umm.. i dont have any idea on how to do this lol. sorry.
View user's profile Send private message
PostPosted: Sat May 17, 2008 5:15 pm Reply with quote
int
Regular user
Regular user
Joined: Aug 13, 2007
Posts: 12




CTRL+U in Firefox (any version I think) while you`re visiting the page...
View user's profile Send private message
PostPosted: Sun May 18, 2008 10:31 am Reply with quote
dcole111
Beginner
Beginner
Joined: May 17, 2008
Posts: 4




int wrote:
CTRL+U in Firefox (any version I think) while you`re visiting the page...


thanks mate Smile
View user's profile Send private message
PostPosted: Sun May 18, 2008 10:43 am Reply with quote
dcole111
Beginner
Beginner
Joined: May 17, 2008
Posts: 4




well, i went to the source of the page that i had to say thanks on...

but nothing, im looking for a link to a song without saying thanks...

if i pasted some of the code here would it help?

heres some code:

<!-- AJAX Thanks -->
<script type="text/javascript">
<!--

/**
* Initialize Variables
*/
var thanks_postid = 0;
var thanks_pending = false;

/**
* Fetch AJAX'ed Thanks
*/
function thanks_fetch()
{
if (typeof vb_disable_ajax != 'undefined' && vb_disable_ajax == 2)
{
// disable all ajax features
return false;
}

if (thanks_ajax.handler.readyState == 4 && thanks_ajax.handler.status == 200 && thanks_ajax.handler.responseXML)
{
if (fetch_object('thanks_progress_' + thanks_postid))
{
fetch_object('thanks_progress_' + thanks_postid).style.display = 'none';
}

// undo pending
thanks_pending = false;

// fetch status
var status = fetch_tags(thanks_ajax.handler.responseXML, 'status')[0].firstChild.nodeValue;

// generate html
if (status == 'ok')
{
// ###### wrapper ######
var wrapper_dat = fetch_tags(thanks_ajax.handler.responseXML, 'wrapper')[0].firstChild.nodeValue;
var wrapper_obj = fetch_object('thanks_wrapper.' + thanks_postid);

wrapper_obj.innerHTML = wrapper_dat;
wrapper_obj.style.display = ((wrapper_dat == '::blank::') ? 'none' : 'block');

// ###### message ######
var message_dat = fetch_tags(thanks_ajax.handler.responseXML, 'message')[0].firstChild.nodeValue;
var message_obj = fetch_object('post_message_' + thanks_postid);

message_obj.innerHTML = message_dat;

// ###### postbit ######
var postbit_dat = fetch_tags(thanks_ajax.handler.responseXML, 'postbit')[0].firstChild.nodeValue;
var postbit_obj = fetch_object('thanks_postbit.' + thanks_postid);

postbit_obj.innerHTML = postbit_dat;

// ###### postbtn ######
var postbtn_dat = fetch_tags(thanks_ajax.handler.responseXML, 'postbtn')[0].firstChild.nodeValue;
var postbtn_obj = fetch_object('thanks_postbtn.' + thanks_postid);

postbtn_obj.innerHTML = postbtn_dat;
}
else if (status == 'unregistered')
{
alert('You must either register or log in before using that function!');
}

if (is_ie)
{
thanks_ajax.handler.abort();



that was the whole code under the "thanks" section of the source.
does it help? i dont get any of it seeing as im a noob haha, but i can see "script" and "javascript" so yeah. please help Smile[/b][/u]
View user's profile Send private message
forum help :)
www.waraxe.us Forum Index -> General discussion
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



PCWizardHub - Helping you fix, build, and optimize your PC life
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.055 Seconds