| View previous topic :: View next topic |
| Author |
Message |
jimbowez MagicJack Newbie
Joined: 20 Jan 2010 Posts: 6
|
Posted: Wed Jan 27, 2010 2:20 am Post subject: |
|
|
The windows link worked for me. Goodbye usb dongle!
Thanks |
|
| Back to top |
|
 |
Google AdSense

|
Posted: Wed Jan 27, 2010 2:20 am Post subject: Magicjack support, tips, tricks, and hacks |
|
|
|
|
| Back to top |
|
 |
grm magicJack Apprentice
Joined: 25 Jan 2008 Posts: 23
|
Posted: Wed Jan 27, 2010 4:19 pm Post subject: |
|
|
| jimbowez wrote: |
The windows link worked for me. Goodbye usb dongle!
Thanks |
I have tried it about 5 times and keep getting failed read, any secret when to start the program? |
|
| Back to top |
|
 |
jimbowez MagicJack Newbie
Joined: 20 Jan 2010 Posts: 6
|
Posted: Wed Jan 27, 2010 5:31 pm Post subject: |
|
|
I opened sipdump to get it ready. I set it to run 4 times. After starting magicjack and as soon as it said "ready" i clicked "OK" on sipdump. It ran and then closed magicjack. I opened the generated text files and searched for "SIP.Connection.Refresh". Looked up a few lines and my pass was there.
Just follow the instructions on the link above.
Good luck. |
|
| Back to top |
|
 |
grm magicJack Apprentice
Joined: 25 Jan 2008 Posts: 23
|
Posted: Thu Jan 28, 2010 7:57 pm Post subject: |
|
|
| I have tried all day on two MJ's with no success, I wonder if it is because I have two of the older MJ's? |
|
| Back to top |
|
 |
nitemare MagicJack User
Joined: 28 Jan 2010 Posts: 38
|
Posted: Thu Jan 28, 2010 11:49 pm Post subject: |
|
|
X-lite - cant connect. Followed instructions. Got my UN from Password finder 2.2, got my password from the dump files.
Any suggestions? Firewall and port 5070 is forwarded. |
|
| Back to top |
|
 |
sunny786 magicJack Apprentice
Joined: 22 Sep 2008 Posts: 29
|
Posted: Sat Jan 30, 2010 11:35 am Post subject: |
|
|
unable to find the password  |
|
| Back to top |
|
 |
galcv2 magicJack Apprentice
Joined: 01 Feb 2010 Posts: 17
|
Posted: Mon Feb 01, 2010 2:06 pm Post subject: |
|
|
| same here... I can't find my password... I'm also unable to get a dump bigger than 19495kb using sipdump |
|
| Back to top |
|
 |
galcv2 magicJack Apprentice
Joined: 01 Feb 2010 Posts: 17
|
Posted: Mon Feb 01, 2010 4:42 pm Post subject: |
|
|
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... |
|
| Back to top |
|
 |
oldtimercurt Dan isn't smart enough to hire me
Joined: 07 Feb 2009 Posts: 280 Location: Pensacola
|
Posted: Tue Feb 02, 2010 6:32 pm Post subject: |
|
|
Was able to pull mine on 5710 Thin Client. File sizes were only about 14K.
I never found the info using specified search. I previously had used SIP info on ATA. Finally searched for PW using old PW. Lo and behold, they are the same. Only thing that changed was user agent.
OTC |
|
| Back to top |
|
 |
dr_strangelove MagicJack Newbie
Joined: 02 Feb 2010 Posts: 3
|
Posted: Tue Feb 02, 2010 6:55 pm Post subject: |
|
|
| 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: |
#!/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
}
|
|
|
| Back to top |
|
 |
dogboyaa1 MagicJack Newbie
Joined: 03 Feb 2010 Posts: 1
|
Posted: Wed Feb 03, 2010 1:39 am Post subject: So Sad..... |
|
|
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. |
|
| Back to top |
|
 |
neo2121 Dan isn't smart enough to hire me
Joined: 09 Jan 2008 Posts: 279
|
Posted: Wed Feb 03, 2010 6:38 am Post subject: |
|
|
| 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. |
|
| Back to top |
|
 |
stardust MagicJack Newbie
Joined: 11 Oct 2008 Posts: 2
|
Posted: Wed Feb 03, 2010 8:54 am Post subject: |
|
|
| if I get my password, is it posible to use it with asterisk? |
|
| Back to top |
|
 |
pancho1950 MagicJack Contributor
Joined: 07 Mar 2009 Posts: 54
|
Posted: Wed Feb 03, 2010 11:10 am Post subject: |
|
|
| 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: |
#!/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 |
|
| Back to top |
|
 |
dr_strangelove MagicJack Newbie
Joined: 02 Feb 2010 Posts: 3
|
Posted: Wed Feb 03, 2010 11:55 pm Post subject: |
|
|
| Quote: | | 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. |
|
| Back to top |
|
 |
|