Hacking Wilbrand GUI for Windows

  • Thread starter Thread starter asper
  • Start date Start date
  • Views Views 47,822
  • Replies Replies 30
  • Likes Likes 1
the key changes all the time, so you need to parse the source of the page to get the current key, or use an app like wget that can do that for you. Here's a wget command that will work

Code:
wget -c -l1 -r -nd --retr-symlinks -t10 -T30 --random-wait --reject "*.html" --reject "%2A" "http://bootmii.org/download/"*

edit: btw, why u asking this is the Wilbrand GUI thread?
 
  • Like
Reactions: 1 person
I try to made my first application in Visual c#.

Seems that all works great.. but I have a little problem.

I add a function to download also hackmii installer form bootmii.org...

but with this link: http://bootmii.org/g...d54539881244b34

I recive a funny cut... there is a way to download it directly from bootmii.org?

my actualy code:

Code:
wcDownload.DownloadFile("http://bootmii.org/get.php?file=hackmii_installer_v1.0.zip&key=db7970e2df1d666004a44bd6ed54539881244b34", "hackmii_installer_v1.0.zip");

i take it using right click on bootmii.org..
http://bootmii.org/get.php?file=hackmii_installer_v1.0.zip&key=db15ac39bcf13999ea03413c20ce925d53d03987 works for me.
 
At this moment in time, yes. But as XFlak said, the key changes. There is no static download link for the HackMii Installer.

Here code to get the current download link for the HackMii Installer. ;)

Code:
_hackmii_installerURL() ;Get Current download link for the HackMii Installer.

Func _hackmii_installerURL()
FileDelete(@TempDir & "\hackmii_installerURL") ;Clean
Local $hDownload = InetGet("http://bootmii.org/download/hackmii_installer_v1.0.zip", @TempDir & "\hackmii_installerURL", 1, 1) ;Download Header
Do
Sleep(250)
Until InetGetInfo($hDownload, 2) ; Check if the download is complete.
InetClose($hDownload) ; Close the handle to release resources.

$Gethackmii_installerURL = FileRead(@TempDir & "\hackmii_installerURL") ; Read bootmii.org Header.
FileClose($Gethackmii_installerURL)
FileDelete(@TempDir & "\hackmii_installerURL") ;Clean
$Stringhackmii_installerURL = _splitInfo($Gethackmii_installerURL, 'href\=\"\/get\.php\?file\=([^*]*?)\"\>\HackMii Installer v1\.0
 
  • Like
Reactions: 1 person

Site & Scene News

Popular threads in this forum