Waraxe IT Security Portal
Login or Register
October 18, 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: 69
Members: 0
Total: 69
Full disclosure
SEC Consult SA-20241009-0 :: Local Privilege Escalation via MSI installer in Palo Alto Networks GlobalProtect (CVE-2024-9473)
APPLE-SA-10-03-2024-1 iOS 18.0.1 and iPadOS 18.0.1
Some SIM / USIM card security (and ecosystem) info
SEC Consult SA-20240930-0 :: Local Privilege Escalation via MSI Installer in Nitro PDF Pro (CVE-2024-35288)
Backdoor.Win32.Benju.a / Unauthenticated Remote CommandExecution
Backdoor.Win32.Prorat.jz / Remote Stack Buffer Overflow (SEH)
Backdoor.Win32.Amatu.a / Remote Arbitrary File Write (RCE)
Backdoor.Win32.Agent.pw / Remote Stack Buffer Overflow (SEH)
Backdoor.Win32.Boiling / Remote Command Execution
Defense in depth -- the Microsoft way (part 88): a SINGLEcommand line shows about 20, 000 instances of CWE-73
SEC Consult SA-20240925-0 :: Uninstall Password Bypass in BlackBerry CylanceOPTICS Windows Installer Package (CVE-2024-35214)
Apple iOS 17.2.1 - Screen Time Passcode Retrieval (MitigationBypass)
CyberDanube Security Research 20240919-0 | Multiple Vulnerabilities in Netman204
Submit Exploit CVE-2024-42831
Stored XSS in "Edit Profile" - htmlyv2.9.9
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



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.044 Seconds