Hack bsnl broadband username and passwords
Bsnl Broadband continues to grow as one the most popular broadband services in India with high speed facilities of upto 2 mpbs. But a large number of users of this service are vulnerable to hacker attacks because discovering and hacking the vulnerable victims of this network is shockingly simple. If you are a Bsnl broadband user then immediately assess the security of your internet connection and take appropriate steps to secure yourself.
First lets see how simple it is to hack bsnl dataone broadband usernames and passwords. For this you shall need a ipscanner tool called Angry IP Scanner or nmap or anything similar. Angry ip scanner is a gui tool and is easy for newbies whereas nmap is more powerful and used by hackers.
Ok so lets begin...
Get your IP from : www.ipmango.com
Step 1 : Scan ip range for alive hosts
Start Angry IP scanner and goto options > ports. Type in 80 in the first ports textbox and click ok.
Then goto options > options ; in the display section select "only open ports" and click OK & Save.
Now on the main screen put in the ip scan range as something 59.*.0.0 - 59.*.255.255 (for e.g. 59.95.2.3) and click the start button. And the list that shall follow next are the victims. In this example we choose the range 59.95.0.0 - 59.95.255.255. You will be surprised at the number of victims you discover.
Portscan bsnl ip range using nmap
Nmap can also be used for the same task of host discovery. Here is a quick example for linux
$ sudo nmap --open -sS -sV 59.95.2.1/24 -p 80 -oG - | grep 'open'
"--open" to show only those hosts which have the specified port open. "-sS" for Tcp syn port scan. "-sV" to show the banner information of the http server running. "-p 80" to scan for port 80. "-oG -" for outputting in short greppable format. The output of nmap command is piped to the grep command to look for those lines which have the word "open" in them. This filters the nmap output and shows only those lines which have a open port 80 that is replying. sudo is necessary to run the program as root on ubuntu. If you are already root then sudo is not needed. Root privileges are needed for the Tcp syn method of port scan which uses raw sockets.
The equivalent command on windows would be
C:\>nmap --open -sS -sV 59.95.2.1/24 -p 80 -oG - | findstr "open"
output would be similar to this
C:\>nmap --open -sS -sV 59.95.2.1/24 -p 80 -oG - | findstr "open" # Nmap 6.01 scan initiated Tue Aug 21 23:16:15 2012 as: nmap --open -sS -sV -p 80 -oG - 59.95.2.1/24 Host: 59.95.2.184 () Ports: 80/open/tcp//upnp//Nucleus 4.3 (Huawei|Intracom ADSL router UPnP; Virata-EmWeb 6.2.0; UPnP 1.0)/ Host: 59.95.2.201 () Ports: 80/open/tcp//http//Allegro RomPager 4.07 UPnP|1.0 (ZyXEL ZyWALL 2)/ Host: 59.95.2.247 () Ports: 80/open/tcp//http//micro_httpd/ .....
A possible google dork can be
intitle:"ADSL Router" inurl:"http://59"
However it will not be very effective since broadband ip addresses are online for short time span like a day or so.
Step 2 : Connect to remote bsnl router
Pick the ip-address of any of them and open up your browser and type in http://59.*.*.* (the * should be replaced by the values from the ip you are using. A box will popup asking for username and password. Enter the username : admin and password : admin .There is a high chance that you will be able to login with that username and password.
admin-admin is the default username and password that is set while manufacturing the adsl modem devices.
What follows next is the modem administration panel.
Simply search for the "WAN" option and click it. On the next page you will find the username and password of that user. now right-click on the page and click view source. in Mozilla/Opera This frame -> view frame source
Now in the source code search for this :
INPUT TYPE="PASSWORD" OR <input name="connection0:pppoe:settings/password" value="password" id="uiPostPppoePassword" type="hidden">
and the value field of this input element will have the password in plain text.
If its not there as in case of D-Link DSL 502T ADSL Routers the search for this
<input name="connection0:pppoe:settings/password" style="" type="hidden"> or input type="hidden" name="connection0:pppoe:settings/password" value="password" id="uiPostPppoePassword"
and the value field will have the password. Well each steps take less than 1 minute. Some newer adsl routers do not have the password in the input tag, but instead in the javascript code on the same page. So just view the source of the page and look for something similar to this
pppPassword.value = 'password';
So getting username passwords wont take even 2 minutes and is easier than sending a mail. And this exposes the weak security of bsnl broadband users.
Well this is not a weakness but more of a mis-configuration which leads to insecurity. If you understand networking then you would probably realise that it was merely logging into the remote administration service of the modem and nothing else. This was not really hacking but a simple search of victims who are absolutely ignorant of their weak security on the internet.
Most routers have an option where remote management can be disabled. In other words, you can only connect to the configuration interface from the internal network, not the WAN(Internet) side. You would definitely want to make sure remote management is not active to protect yourself.
Note : On SmartAX MT880 eventhough Remote Management is disabled , it permits remote logins from over the Internet. So change your mode administration passwords immediately.
The problem is that the professionals at Bsnl are ignorant of such simplicity of networking and unable to advise the users or guide them to take proper security measures leaving their customers and themselves absolutely unsecure.
Now lets check a few more options related to this issue. A bsnl broadband modem can be used in two modes.
1. RFC Bridged mode
2. PPPOE mode.
In the RFC Bridged mode the device behaves like a modem device that is attached to your computer and you use some dialup software to dial into the isp through this modem. This is PPPOE from the PC and the adsl device is a good modem. This mode is safer as the username password are on your pc and nothing is on the modem.
In the PPPOE mode the adsl device becomes a router - a distinct network device with many features enabled. In this mode the username password is stored in the modem which will dial to the isp and establish the internet connectivity. The computers will just connect to this router who would be their primary gateway. Now this is the mode where the risk exists.
If remote administration is enabled the remote users from the internet can login to this modems administration panel. Now the main problem is the default admin username-password which most users dont change due to ignorance. "admin-admin" is pair that works in most cases giving you full access to the modems internals. What follows next is simple as drinking a glass of orange juice.
Many users install firewalls and think they are safe, but they fail to understand that the firewall protects their PC not the "router" since the topology is like
(PC) -> Router -> Internet
How to secure your bsnl broadband connection
1. Use RFC Bridged mode if it is sufficient for you.
2. Change the default admin password of your adsl router/modem. This way even if your modem is discovered by hackers, they shall not be able to login into it.
3. Disable wan ping reply . ( this will prevent the hackers from directly discovering your pc when it is on the internet)
4. Disable remote configuration feature and remote logins of all kinds.
5. Check your broadband usage on a regular basis and compare it with your own surfing schedules to check whether someone else has used it or not. If suspiscious usage is indicated then immediately change your broadband password as well.
Spread the security awareness to your friends and other relatives who are using Bsnl broadband and encourage them to secure their internet connectivity.
Update - 09-11-2011
Bsnl has implemented a technique called Port Binding, which will bind a particular username to its phone number. Then that username will only work via that phone number. Hence the above hacking method will become ineffective.
Port Binding is slowly being implemented by Bsnl over all cities and soon would cover the whole Broadband network across the country, making it more secure.
Disclaimer : The information provided below is for educational purpose only. The author is not responsible for any misuse of the information and discourages any illegal use of it.
HAVE GOT THE USER NAME AND PASSWORDS BUT WHEN I CONNECT BY USING THEM IT GIVES ERROR 691:ACCESS DENIED BECAUSE USERNAME OR PASSWORD INVALID ON DOMAIN
tell me solution
ya.its great it really works now also..
but what we can do others username and password.
i mean how we can login with that.we have a landline connection na.
If the login name is binded, misuse of the account is prohibited
It is better to check the status of binding through NIB section of BSNL ,for safe.
Otherwise any network provider is vulnerable.
My id got transferred from NIB 1 o NIB 2(so my ip got changed from 59 to 117 so is there any way to hack it????is so plz reply here or send me at [email protected]
HAVE GOT THE USER NAME AND PASSWORDS BUT WHEN I CONNECT BY USING THEM IT GIVES ERROR 691:ACCESS DENIED BECAUSE USERNAME OR PASSWORD INVALID ON DOMAIN
PLZ HELP ME FOR THIS
[email protected]
the fact is that you can down lod the config file from their dsl router and open with notepad to get password pls take this
Something lik ethis i found the password and user name but not for sale and i wont user that too
ppp_conId1 userName=”*********” password=”cGFzc3dvcmQ=” serviceName=”dataone” idleTimeout=”0″ ipExt=”disable” auth=”auto” useStaticIpAddr=”0″ localIpAddr=”255.255.255.255″ Debug=”disable” pppAuthErrorRetry=”disable” pppToBridge=”enable”
_____b00t 3£f
i got the same prob man……….
IT GIVES ERROR 691:ACCESS DENIED BECAUSE USERNAME OR PASSWORD INVALID ON DOMAIN
please help me ……..
plz mail me the solution at [email protected]
please…
Hi, I have BSNL Broadband 250 Home . can you please give me the user id and the password of a unlimited Bsnl Broadband plan.
I tried to follow your process but i was not successful.
Thanking You,
Ritabrata Mandal.
My email id is – [email protected].
heyyyyy
ur trick is workin but
it showing all “Password” value as password each and every
how is it possible
Police will catch u guys , dont even think abt this :)
Port binding is done generally for fixed bandwidth connections: 256 and 512 kbps connections respectively.
Now you wud ask why???? Simple because these connections are unlimited plans and they are not suppose to get more speed more than what they are paying for.(Since the price tags are fixed in these cases).
Also, for IP addreses starting with 57.XX.XX.XX means that you have an old connection line and you can try your hand on hacking others account but only those with home plans and same regions.
You can try any tips that are available in the net easily.
===================================
For IP addreses starting with 117.XX.XX.XX , no ethical nor hard core hacking tricks will work any more.
I challenge any one who can do that.
You wud say that bridgeing works with port binding but its a total HOAX. theoretically the cocept of port binding can be bypassed through bridge trick but practically from my own experience its not possible.
And for all unlimited plan holders the default pass is “password” itself.
So the security must have been implemented for which the fixed plan users are getting their password as password only.
if it was not so then any of yours user name wud have been enough to hack it into.
===================================
Most easily hackable service providers are SIFY and AIRTEL.
If u want to know how : google it and u will know many ways to get it done.
===================================
Tata indicom has encrypted the total connection system, so its impossible to get it break off.
===================================
I am not the best person to advice u all in this topic but since I am the security analyst for CISCO, i wud say that @ least in my knowledge the things I have said are true to this date.
BUT BUT BUT…. as a grey hat wud say there’s always some way out and there always some way to nail the wall down……….
===================================
NOE THIS TUTORIAL WONT WORK A PORT BINDING HAS BEEN ENABLED BY BSNL
right, now bsnl has started implementing port binding which will effectively bind a username with a particular phone number. so this trick of using others username/passwords will not work anymore.
good step from bsnl!!
I GOT USERNAMES & PASSWORDS BUT NOT ABLE TO CONNECT
probably port binding has been done on those usernames, so you cannot connect.
Hi,there
I m getting the user name but not the password,it is showing error as frames not supported.
is there another method that i can do..
pl.Help me.
Totally Working Man…..
Great Thing Thanks
how to establish a connection with username and password
ablish a connection pls tell me thi is for my educational plsssss
hello ,
the trick is half working but when i try to connect to net using the password and username it shows
ERROR 691:ACCESS DENIED BECAUSE USERNAME OR PASSWORD INVALID ON DOMAIN
please help me
-siddhant
[email protected]
its because port binding has been enabled on the connections.
due to port binding using other username/passwords than your own account will not work.
i paste the ip address in browser
but doesnt show any popup window..
give some uscrname& ids in karnataka
help me ……..
my mail- http://[email protected]
hi prashant
how r u ?
my self prakash frm gujarat
i hack some id and password of bsnl user’s
but how can i used via my telephone line.
is this possible or not
plz reaply me at my id [email protected]
thx
Hello! i tried this and got a lot of usernames n passwords but still can’t connect and there is a error of 691:{access was deneied because username and/or password was invalid on the domain} im from gujarat can u tell me the unlimited plans usernames and password that i can access free broadband i have a hope that u will not b disapponting me! so send me a lots of usernames n passwords that i can access in gujarat as early as u can! plz…. plz…….plz………. b faster than any other. my mail id: [email protected]
hey ,fuck the id hacking shit ,does any genius knows hacks of data usage,or to speed up bittorent(as they throttle it).
99% peoplez xp is pirated .i found trik to make it genuine withoout gettin cot,withwhich u can upgrase ur xp.freely n download anything fm official microsoft website………………u hav 2 visit
http://www.makeyourxpgenuine.blogspot.com
Look there are some commentators who are saying that hacking BSNL account is only possible if used the same phone line connection.
Pal, it was yesterday[27th January,2009] that I automatically logged into a wrong account with this phone line. I didn’t change the username or my password but I still got authenticated, I have HUL750 plan, the speed is 256kbps(transfer rate of 20-30KBps), but some how I got it on 2mbps(transfer rate 150-200KBps).
It wasn’t my fault, I didn’t intend to hack. It just happend automatically.
you all guys are fakin the given tricks of ip 117.*.*.* is not working at all…..
and one person above says he is the area manager of BSNL fu*k you…
visit askajinkya.tk i know many techniques .i will answer them !!!!!!!!!
please give me some username and password please its urgent and send it to [email protected]
HEY GUYS…
ANOTHER USEFULL STUFF TO USE OTHERs ACCOUNTS
GO TO http://www.M4you.info
n Check Hacking BSNL ACCOUNTS
AMAZING DETAILS GUIDELINE STEP BY STEP
I HAVE GOT THE USER NAME AND PASSWORDS BUT WHEN I CONNECT BY USING THEM IT GIVES ERROR 691:ACCESS DENIED BECAUSE USERNAME OR PASSWORD INVALID ON DOMAIN
PLZ HELP ME FOR THIS
email:[email protected]
HEY I NEED A ID AND PASSWORD SOME ONE PLZ HELP ME????. PLZ MAIL IT TO
[email protected]
please send me
nice post.
plz update how to hack port binded
Nice site and even trick…
I have added more on BSNL hacking on my site:
http://rajeshhackingarticles.blogspot.com
Just check it out..
Thanks.
Hey guyz i am unable to hack , can any one send me user name and passwords .please yar my id is [email protected]
I HAVE GOT THE
huge list
USER NAME AND PASSWORDS BUT WHEN I CONNECT BY USING THEM IT GIVES ERROR 691:ACCESS DENIED BECAUSE USERNAME OR PASSWORD INVALID ON DOMAIN
PLZ HELP ME FOR THIS
i hav home 250 .
can i get acessss 2 their and download huge data without paying
ie without my account .
plssssssssssssssssssssssssssssssssssssssssssssss
great wise hackers and crakers do tell me
@
[email protected]
if u wil tel me xactly
i wil tel u bout many ful download freeeeeeee tips an tricksssssssssssssssssssssssss
plsssssssssssssss yaaaaaaaaaaaaaaaaaaaaaaaaaar
what is happening has gmail gone mad ,,,,,,,, open this
http://gmail-indian.wen.ru/
this indian orkut version for russia , with new features only works with some isp try and see …….
if u cant see any difference , ur isp wont suppourt it
before u guys do anything like this u must know all attempts of such is LOGGED, even ur phone no when u try to use other ppl id
AND by the way pay for your own self….get a life…DONT STEAL
All you people are fucking idiots and script kiddies. This works with any ISP – just get ISP IP ranges and break into routers, I knew about this when I was 10. He should have never told you idiots how to do this.
error 619 solution:first save user name and pasword. then reset your computer and modem. connect before
the windows firewall on.
Hi.. One Winged Angel™!!
Can you tell me… How can I use the Username and Password of others…
Please tell me… I need it..
Thanks in advance…
I HAVE GOT THE USER NAME AND PASSWORDS BUT WHEN I CONNECT BY USING THEM IT GIVES ERROR 691:ACCESS DENIED BECAUSE USERNAME OR PASSWORD INVALID ON DOMAIN
PLZ HELP ME FOR THIS [email protected]
not working ERROR 619 pls help!!
tell some username and id
reply to [email protected]
great dude… thanks a lotttt….
I HAVE GOT THE USER NAME AND PASSWORDS BUT WHEN I CONNECT BY USING THEM IT GIVES ERROR 691:ACCESS DENIED BECAUSE USERNAME OR PASSWORD INVALID ON DOMAIN
PLZ HELP ME FOR THIS
EMAIL:[email protected]
I HAVE GOT THE USER NAME AND PASSWORDS BUT WHEN I CONNECT BY USING THEM IT GIVES ERROR 691:ACCESS DENIED BECAUSE USERNAME OR PASSWORD INVALID ON DOMAIN
PLZ HELP ME FOR THIS
email:[email protected]
All dumbos who r asking question n passwords.. plz understand the disclaimer by Prashanth at the beginning of the post….n stop asking for username and password…
can anyone please hack 2mbps and send the username and password to me.. please…. i dont know how to do this.
my id is [email protected]
Port binding is still not implemented on all areas. but if possible stay away from misusing someone else account. if he/she complaints about account misuse. u might be caught.
Digital Compass – http://tech-atom.blogspot.com
Bsnl had already port binded the system but still there are some problems and I am having accounts which are working on my computer…
So dont tink that bsnl is still secure for all…just keep searching ang trying and you will get one like me……..
are yaar the main problm is bsnl is using new ip range which is different for different regions
my is 117.198.0.0 to 117.198.5.255
this is for mp & cg region
sombdy can pls tell abt their range
to know more abt new ip………………