magicJack and MagicJack Plus Support, Reviews, FAQs and Hacks Forum Index magicJack and MagicJack Plus Support, Reviews, FAQs and Hacks
magicJack and magicJack Plus Unofficial Technical Support. Your Magic Jack and Magic Jack Plus phone service information resource
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
Stroths MJ Utilities 1.6 -SIP Info & More *8/2 UPDATE*
Goto page Previous  1, 2, 3 ... 26, 27, 28 ... 34, 35, 36  Next
 
Post new topic   Reply to topic    magicJack and MagicJack Plus Support, Reviews, FAQs and Hacks Forum Index -> magicJack Tips, Tricks, and Hacks
View previous topic :: View next topic  
Author Message
jimbowez
MagicJack Newbie


Joined: 20 Jan 2010
Posts: 6

PostPosted: Wed Jan 27, 2010 2:20 am    Post subject: Reply with quote

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?option=com_content&view=article&id=76:how-to-get-the-password-via-windows-right-now&catid=1:latest

Mac: http://magicjackhacks.com/index.php?option=com_content&view=article&id=73:obtain-sip-info-on-osx-&catid=1:latest



The windows link worked for me. Goodbye usb dongle!

Thanks
Back to top
View user's profile Send private message
Google
AdSense





PostPosted: 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

PostPosted: Wed Jan 27, 2010 4:19 pm    Post subject: Reply with quote

jimbowez wrote:
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?option=com_content&view=article&id=76:how-to-get-the-password-via-windows-right-now&catid=1:latest

Mac: http://magicjackhacks.com/index.php?option=com_content&view=article&id=73:obtain-sip-info-on-osx-&catid=1:latest



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
View user's profile Send private message
jimbowez
MagicJack Newbie


Joined: 20 Jan 2010
Posts: 6

PostPosted: Wed Jan 27, 2010 5:31 pm    Post subject: Reply with quote

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
View user's profile Send private message
grm
magicJack Apprentice


Joined: 25 Jan 2008
Posts: 23

PostPosted: Thu Jan 28, 2010 7:57 pm    Post subject: Reply with quote

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
View user's profile Send private message
nitemare
MagicJack User


Joined: 28 Jan 2010
Posts: 38

PostPosted: Thu Jan 28, 2010 11:49 pm    Post subject: Reply with quote

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
View user's profile Send private message
sunny786
magicJack Apprentice


Joined: 22 Sep 2008
Posts: 29

PostPosted: Sat Jan 30, 2010 11:35 am    Post subject: Reply with quote

unable to find the password Sad
Back to top
View user's profile Send private message
galcv2
magicJack Apprentice


Joined: 01 Feb 2010
Posts: 17

PostPosted: Mon Feb 01, 2010 2:06 pm    Post subject: Reply with quote

same here... I can't find my password... I'm also unable to get a dump bigger than 19495kb using sipdump
Back to top
View user's profile Send private message
galcv2
magicJack Apprentice


Joined: 01 Feb 2010
Posts: 17

PostPosted: Mon Feb 01, 2010 4:42 pm    Post subject: Reply with quote

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
View user's profile Send private message
oldtimercurt
Dan isn't smart enough to hire me


Joined: 07 Feb 2009
Posts: 280
Location: Pensacola

PostPosted: Tue Feb 02, 2010 6:32 pm    Post subject: Reply with quote

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
View user's profile Send private message
dr_strangelove
MagicJack Newbie


Joined: 02 Feb 2010
Posts: 3

PostPosted: Tue Feb 02, 2010 6:55 pm    Post subject: Reply with quote

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
View user's profile Send private message
dogboyaa1
MagicJack Newbie


Joined: 03 Feb 2010
Posts: 1

PostPosted: Wed Feb 03, 2010 1:39 am    Post subject: So Sad..... Reply with quote

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
View user's profile Send private message
neo2121
Dan isn't smart enough to hire me


Joined: 09 Jan 2008
Posts: 279

PostPosted: Wed Feb 03, 2010 6:38 am    Post subject: Reply with quote

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
View user's profile Send private message Visit poster's website AIM Address
stardust
MagicJack Newbie


Joined: 11 Oct 2008
Posts: 2

PostPosted: Wed Feb 03, 2010 8:54 am    Post subject: Reply with quote

if I get my password, is it posible to use it with asterisk?
Back to top
View user's profile Send private message
pancho1950
MagicJack Contributor


Joined: 07 Mar 2009
Posts: 54

PostPosted: Wed Feb 03, 2010 11:10 am    Post subject: Reply with quote

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
View user's profile Send private message
dr_strangelove
MagicJack Newbie


Joined: 02 Feb 2010
Posts: 3

PostPosted: Wed Feb 03, 2010 11:55 pm    Post subject: Reply with quote

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
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    magicJack and MagicJack Plus Support, Reviews, FAQs and Hacks Forum Index -> magicJack Tips, Tricks, and Hacks All times are GMT - 5 Hours
Goto page Previous  1, 2, 3 ... 26, 27, 28 ... 34, 35, 36  Next
Page 27 of 36

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



Powered by phpBB Turbo Extended Edition © 2010, phpBB Group