Page 9 of 11

So Sad.....

Posted: Wed Feb 03, 2010 2:39 am
by dogboyaa1
I have tried to get my password for several months now. i am fairly technical and i would like to think i know what i am doing. I tried using the password finder as well as manualy looking for it using sipdump no luck.

Is it true that some of the newer usb dongles are not breakable? If so how can i tell if mine is one of them?

Thanks for the info.

Posted: Wed Feb 03, 2010 7:38 am
by neo2121
nope they are all the same the password is there, the timing ins the hardest part. I have been helping people out via teamveiwer and it took me 6 tries on one MJ till I was able to find the password.

Posted: Wed Feb 03, 2010 9:54 am
by stardust
if I get my password, is it posible to use it with asterisk?

Posted: Wed Feb 03, 2010 12:10 pm
by pancho1950
dr_strangelove wrote:
galcv2 wrote:just an update... the password is there and I got it a long time ago and I did not know... I have to use MJMD5, after that, I can use X-Lite fine. Next step will be setting up an ATA.

Just use sipdump and look yourself in the dumped file. The password is 20 characters and in my case it was several times in the dumped file alone in just one line with nothing else...
I couldn't find it under SIP.ConnectionRefresh like I've read in other posts, though I think I just found it using SIPDump, it is in the file on a line all by itself and it's repeated several times. Also here's a perl script to parse the SIP dump files to help anyone else trying.

Code: Select all

#!/usr/bin/perl
use strict;
$/ = "\r\n";
my %passwords;
while(<>)
{
    chomp;
    my $line = $_;
    if( $line =~ m/\A.{20,20}\z/ )    {
        next if $line =~ m/{{{|\|\|\|/;
        if( !defined( $passwords{ $line } ) ){
            $passwords{ $line } = 1;
        } else {
            $passwords{ $line }++;
        }
    }
}
foreach my $key( sort keys %passwords )
{
    print $key."\n" if( $passwords{ $key } > 10 ); #occurs more than 10 times
}

 
How do you use this script can you explain.

Thank's

Pancho

Posted: Thu Feb 04, 2010 12:55 am
by dr_strangelove
How do you use this script can you explain.
copy the code snippet and past it into a file, call it passwordfind.pl. Install perl, then run it from the command line, passing the SIPDump txt files from SIP dump into it like so: perl passwordfind.pl SIPDump*.txt

This will display all lines in the file that are 20 characters long and occur 10 times or more in the files. If you have unix/linux you can pipe the results out to a new file to search through like this:

perl passwordfind.pl SIPDump*.txt > newfile.txt

Then open newfile.txt and search for the thing that looks most like a password with numbers and letters. The output contains alot of windows api functions that are 20 characters long and the password should probably stick out like a sore thumb.

Posted: Thu Feb 04, 2010 5:48 pm
by novice2
dr_strangelove wrote:
How do you use this script can you explain.
copy the code snippet and past it into a file, call it passwordfind.pl. Install perl, then run it from the command line, passing the SIPDump txt files from SIP dump into it like so: perl passwordfind.pl SIPDump*.txt

This will display all lines in the file that are 20 characters long and occur 10 times or more in the files. If you have unix/linux you can pipe the results out to a new file to search through like this:

perl passwordfind.pl SIPDump*.txt > newfile.txt

Then open newfile.txt and search for the thing that looks most like a password with numbers and letters. The output contains alot of windows api functions that are 20 characters long and the password should probably stick out like a sore thumb.
I got my password some time ago last week with SIPDump, but when I put it in Xlite, xlite timed out with 408 error message. Since then I ran SIPDump serveral times and can no longer find my password. I tried the perl script last night and received the following messages:

perl passwordfind.pl SIPDump*.txt
Bareword found where operator expected at - line 1, near "*.txt"
(Missing operator before txt?)

passwordfind.pl SIPDump*.txt
Bareword found where operator expected at - line 2, near "*.txt"
(Missing operator before txt?)

Very frustrating at this point.

Posted: Thu Feb 04, 2010 8:58 pm
by dr_strangelove
I'm running it from linux. If you run it from windows you will have to change the first line(shebang) to point to perl like so

#!/usr/bin/perl to #!/perl/bin/perl
http://www.cgi101.com/book/connect/winxp.html#3

it could also be this or wherever perl was installed on windows
#!C:\perl\bin\perl.exe

http://www.bestnetcraft.com/readme.html

Posted: Fri Feb 05, 2010 3:38 pm
by novice2
dr_strangelove, did you use the encrypted password of the MJ, or did you use the MD5 software with your XLite?

Posted: Sat Feb 06, 2010 9:36 pm
by tray
Try this link it’s very easy I got the info. on the first try in about 5 minutes.
http://magicjackhacks.com/index.php?opt ... d=1:latest

Posted: Sat Feb 06, 2010 10:09 pm
by novice2
tray wrote:Try this link it’s very easy I got the info. on the first try in about 5 minutes.
http://magicjackhacks.com/index.php?opt ... d=1:latest
I was able to find my password once again, though mine starts with a number and end with a letter. Is there anybody else out there with a password like that?

The prob I'm having is XLite just wont register with the sip credential I used. I'm suspecting that I am using the wrong proxy to register to. I am in canada and don't know if MJ has a proxy in Canada. is there anyone out there in Canada that got XLite to register? If yes, what proxy was used?

Posted: Sat Feb 06, 2010 10:20 pm
by novice2
I forgot to mention that I have a Canadian number. I read somewhere that you have to register to the right proxy according to the area code of your telephone number. eg. 305-xxx-xxxx would register to proxy1.miami.talk4fre.com.

In my case I have 905-xxx-xxxx.

Posted: Mon Feb 08, 2010 12:48 am
by neo2121
novice2 wrote:
tray wrote:Try this link it’s very easy I got the info. on the first try in about 5 minutes.
http://magicjackhacks.com/index.php?opt ... d=1:latest
I was able to find my password once again, though mine starts with a number and end with a letter. Is there anybody else out there with a password like that?

The prob I'm having is XLite just wont register with the sip credential I used. I'm suspecting that I am using the wrong proxy to register to. I am in canada and don't know if MJ has a proxy in Canada. is there anyone out there in Canada that got XLite to register? If yes, what proxy was used?
well are you using MJMD5.....also make a phone call with your magicjack and then just run netstat to make sure you picked the right proxy.

Posted: Mon Feb 08, 2010 9:57 pm
by r_pimpn
I've tried the dump several times, did the sip refresh search and I still can't find it. I scroll up and down from the search and no 20 character lines or telephone number.
I do get this around it though

Destroyed SIP %s listener on %s

any suggestions?

Posted: Tue Feb 09, 2010 2:01 am
by novice2
neo2121 wrote:
well are you using MJMD5.....also make a phone call with your magicjack and then just run netstat to make sure you picked the right proxy.
Yep! I used MJMD5 and it worked. I have seen so many recent posts where folks used the encrypted pw in the xlite and an MJ proxy then claim they have registered. Giving the impression that thats all that needs to be done.
DON'T WASTE YOUR TIME! you cannot register using MJ proxy whit xlite. YOU MUST YOU MJMD5 METHOD!

I just want to say that misinformation doesn't help in anyway 'less you are on the other side of the fence.

Posted: Tue Feb 09, 2010 2:07 am
by novice2
Asterisk here I come :D

Posted: Tue Feb 09, 2010 9:00 am
by crackerjack
novice2 wrote:Asterisk here I come :D
Make sure you figure out if you need the mjmd5 fix with your mj device/account. Asterisk is a bit more daunting than xlite!!!!

my 2 cents

Posted: Tue Feb 09, 2010 8:16 pm
by madlogik
Wow, I came here looking for info on MJMD5 ...
1: GREAT WORK to this collective!
2: I simply wanted to report that I got my magicjack 2 weeks ago, and started reading about the fact that it was a "simple" sip device... just 100% hassle free..
... then I found out I could "rip" the sip infos off mj's memory ...
I'm running 7 x64 ultimate... UAC disabled (well .. no interactions)
and .. I tried running the mj suite 1000 times.. to no avail..

I did myself a very simple powershell script that waited for magicjack.exe to show up (get-process) .. waited x amount of time (sleep) increasing each run (10 times over) and looped..

- wait for mj to show .. for 1 , 2 , 3 , 4 , 5 , 6 , 7 seconds..
- dump (pmdump) the memory to a file
- launch mj... loop ;)

and in both my dumps 3 and 4 I had the sip password..
well ... the md5 hash of the password ;)

so with mjmd5 I'm able to get x-lite running without having my mj plugged in.

btw: I wanted to mention I did not add any user agent.

here is my setup .

Image

and once again, thanks. I did not go through all 28 pages yes.. but will do, I just wanted to say hello to everyone and to say that : yes you can do it even with the latest version being shipped out


[/img]

Posted: Fri Feb 12, 2010 11:56 am
by sunny786
Is there any hassle free program to dump the memory?

working issues

Posted: Wed Feb 17, 2010 6:24 pm
by dexter4000
i cant get the software to work under vista x64
only the sipdump works.

Posted: Thu Feb 18, 2010 5:45 am
by brandylee0307
Hi,

I am fairly new to MJ, and I apologize in advance if I'm asking a question that has already been answered, but I am hoping I can get some help...

I am trying to obtain information to connect a VOIP Plugin for Microsoft Fax with MJ. It is asking for the following information:

* Direct to this VOIP Gateway (enter IP address or host name)

* Through this SIP/Proxy Server:
Proxy:
Username:
Password:
AoR:

Or, I also have the option of entering this info:

Static IP Address:
Subnet Mask:
Default Gateway Address:
Primary DNS Address:

I tried running the MJUtility to find out my SIP info but it said "Invalid Path3 in Config.ini Correct and try again"

I changed the drive letter in the Configuration to the correct drive and ran the program again, but I still get the same error. :(

Any help you could give would be greatly appreciated. Thanks in advance. :) [/img]

Posted: Sun Feb 28, 2010 1:45 am
by brady88
brandylee0307 wrote:Hi,

I am fairly new to MJ, and I apologize in advance if I'm asking a question that has already been answered, but I am hoping I can get some help...

I am trying to obtain information to connect a VOIP Plugin for Microsoft Fax with MJ. It is asking for the following information:

* Direct to this VOIP Gateway (enter IP address or host name)

* Through this SIP/Proxy Server:
Proxy:
Username:
Password:
AoR:

Or, I also have the option of entering this info:

Static IP Address:
Subnet Mask:
Default Gateway Address:
Primary DNS Address:

I tried running the MJUtility to find out my SIP info but it said "Invalid Path3 in Config.ini Correct and try again"

I changed the drive letter in the Configuration to the correct drive and ran the program again, but I still get the same error. :(

Any help you could give would be greatly appreciated. Thanks in advance. :) [/img]
I tried to do the same thing. My guess is you use "Through this SIP proxy/server" The SIP registrar logon part is confusing. AoR is address of record (like name@domain)... don't know if that pertains to the info you need to logon onto the website. I tried with my sipgate info because it is a bit easier but no luck. But the proxy/gateway has to support T.38. I don't think magicjack or sipgate support T.38. Sipgate is not listed as one of the sites that support T.38... so I doubt MagicJack does. You have to use a dialup/fax modem and hook it up to an ATA.

Posted: Wed Mar 03, 2010 4:54 pm
by hsweiss
I've been trying to get my SIP credentials but so far have failed miserably. I've tried Stroth's utilities, SIPdump, pm and pmdump - nada. This is against the latest MJ version just released on 3/2. Stroths just says it can't find anything. PMdump gives me my ID string which is just my phone number with additions but nothing more.

I'm trying to do this on a relatively old/slow PIII box w/512M RAM. Its more than adequate for running MJ but has anyone had any experiences trying to get SIP credentials on older hardware? Is the box just too slow to dump memory while MJ is firing up and therefore resulting in failure?

Any experience/advice would be appreciated.

Posted: Wed Mar 03, 2010 6:58 pm
by sabresfan
hsweiss wrote:I've been trying to get my SIP credentials but so far have failed miserably. I've tried Stroth's utilities, SIPdump, pm and pmdump - nada. This is against the latest MJ version just released on 3/2. Stroths just says it can't find anything. PMdump gives me my ID string which is just my phone number with additions but nothing more.

I'm trying to do this on a relatively old/slow PIII box w/512M RAM. Its more than adequate for running MJ but has anyone had any experiences trying to get SIP credentials on older hardware? Is the box just too slow to dump memory while MJ is firing up and therefore resulting in failure?

Any experience/advice would be appreciated.
I just got my credentials the other day. I had to do at least 10 dumps and use notepad to look for it. When I found it it was located by MJ info. These dumps seem to have a ton of info. A couple of line to possibly look for that were by my password are - display:inLine;
SIPTCPPPortRangeStart
"Password"
webBrowservalidscheme
It took me awhile to find it and it was only in 2 out of the 10 dumps I did. It was around the 6th dump before I found it.

Posted: Thu Mar 04, 2010 4:17 pm
by hsweiss
Thanks - I'll keep trying..... :-)

Posted: Sun Mar 07, 2010 5:43 am
by sunny786
someone can make that bit easy to find password, i am tired after 3 months every day waisting my time to find out the password. :x

Posted: Sun Mar 07, 2010 10:09 am
by neo2121
The password is easy to find drop me an e-mail if you would like remote help. Anyone for that matter

Posted: Mon Mar 08, 2010 12:46 am
by grm
neo2121 wrote:The password is easy to find drop me an e-mail if you would like remote help. Anyone for that matter
Worked for me . Thanks grm

Posted: Mon Mar 08, 2010 12:28 pm
by Spider210
Just finally decided I would try this but it looks like there might have been an update today? I can't seem to get it with sipdump tryed like 10 dumps 6 or 7 times any suggestions?

Posted: Tue Mar 09, 2010 11:01 pm
by kitkat0981
so which software if any do people use to get the MJ proxy, username and password?

Posted: Wed Mar 10, 2010 1:16 pm
by Spider210
Is this thread outdated cause I am unable to get sip info tried everyway explained on this forum

Posted: Wed Mar 10, 2010 1:37 pm
by kitkat0981
macman4hire wrote:The most current and detailed set of instructions on how to obtain your SIP credentials can be located at the following links posted below for both the Windows and Mac platforms.

Windowos: http://magicjackhacks.com/index.php?opt ... d=1:latest

Mac: http://magicjackhacks.com/index.php?opt ... d=1:latest
Theses links are not showing any information on how to get SIP INFO MJ password... Theses are only articles...

Posted: Wed Mar 10, 2010 2:39 pm
by Spider210
Disappointted can't find anything that works

Posted: Wed Mar 10, 2010 8:07 pm
by neo2121
I promise it works I have helped a lot of people like you remotely that had given up they are around one of them commented in this very post. its no longer showing up as close to the search string that I used in my how to...you just kind of have to have an eye for picking out the password.

Posted: Thu Mar 11, 2010 4:26 pm
by Spider210
Let me know exactly which way still works then.

Posted: Thu Mar 11, 2010 10:07 pm
by neo2121
the sipdump method and use the same search term but you will need to scroll around a little till you see it...

Posted: Mon Mar 15, 2010 1:53 am
by workman1974
neo2121 wrote:the sipdump method and use the same search term but you will need to scroll around a little till you see it...

I must be crazy, I did s sipdump and searched, and then srcolled both ways lot and still never found a password that was 20 characters long. I hope I can find soon, thanks

Posted: Mon Mar 15, 2010 10:51 am
by neo2121
its tricky, what size are the files that you are looking in? If smaller than 15- 16 k than I think your timing is off a little when preforming the dump.

Posted: Mon Mar 15, 2010 4:45 pm
by workman1974
neo2121 wrote:its tricky, what size are the files that you are looking in? If smaller than 15- 16 k than I think your timing is off a little when preforming the dump.
Yes I agree is tricky, The size of files are over 27k so I should have plenty of info captured. I have everything but the password, that seems to be the hard part to find for some reason, since Magic Jack change the location of it after the new updates, I guess from what I have read. I hope I can find it, I am looking again.... thanks

Posted: Mon Mar 15, 2010 6:38 pm
by Spider210
It is possible I used the sipdump.exe and took me a couple hours but I did find it in a 20mb file it was in my 5-6 dump I chose to do 10 dumps and after a bunch of trys i did find it! There is still hope :) and I had the latest updated

thanks to all for the help

Posted: Sat Mar 20, 2010 1:03 pm
by Jarun
is the password always located near SIPTCPPPortRangeStart ?

If so you can use the "find" function in notepad to go directly to that.

Posted: Sat Mar 20, 2010 8:18 pm
by neo2121
its no longer in a set spot but around things just have to have an eye for it

Posted: Mon Apr 19, 2010 6:04 pm
by onknight
I got a Magic Jack today install Fine

But I can't dump the Sip info using the Magic Jack Suite 1.6

I Tell the software MJ is Drive J
but when I run the get Sip Program I get an Error:

There no Disk in the drive Please Insert a Disk into drive
\Device\harddisk4\dr12


HELP

Posted: Mon Apr 19, 2010 7:56 pm
by neo2121
I think that you should read the post here...you only need to run sip dump.exe by its self and nothing else...you download the whole package because it meets the requirements of sip dump.exe. Be prepared to search for you password its never in the same place in dump files. My guide works for the most part http://magicjackhacks.net/index.php?opt ... &Itemid=69

Posted: Wed Apr 21, 2010 10:50 pm
by sunny786
please make this process bit simple & easy to find the pass. :(

Posted: Fri Apr 23, 2010 7:29 pm
by neo2121
you are more than welcome to develop a new way to do it...or better yet i you can identify a pattern in the dump files that would help a ton. Please e-mail me your results.

Posted: Fri Apr 23, 2010 7:52 pm
by sabresfan
sunny786 wrote:please make this process bit simple & easy to find the pass. :(
There are a few easy ways to get your sip credentials. Use a mac and follow the great directions that neo2121 has on his site. You could also just pay him a few $ and he will get it for you. If you are able to execute the dumps take your time and look you will eventually find the password and will be rewarded with a new magical MJ experience.

Posted: Sat Apr 24, 2010 8:14 pm
by cloneman
I appreciate what you've done here, but

WHY oh WHY do you have all your links on rapidshare?

They don't work! The files are so small you can literally put them _anywhere_ else.

Please, if someone could provide links that work.

Posted: Sat Apr 24, 2010 9:32 pm
by neo2121
everything you are looking for is on the download section of magicackhacks.net my links that I have posted should all point to a file some place on magicjackhacks.net

Do I need MJMD5 running

Posted: Wed Apr 28, 2010 1:59 am
by Rainey
Well it only took about 1 hour to figure this out and get my SIP info and get xlite working.

Just wondering if i can make it work without MJMD5 running or is that required these days.

Posted: Wed Apr 28, 2010 6:21 am
by neo2121
Sorry but the good old days are gone for most, its seems for 99% of all MJ account require some form of MJMD5.