September 30, 2011

Contributors

If you have a tutorial about tweaks and tricks feel free to email me: assasin28@gmail.com or leave comments and i'll add you so you can post your tutorial here.. Thanks!

1. You must have a google account (gmail account)
2. Tweaks and Tricks - as long as computer related
3. Must be original work

September 29, 2011

Back when i was a newbie

Yesterday i was deleting some stuff in my hard drive, old .exe's, pkg's, pdf's and even porn :)
then i found my old Canopy Tools Mac OS version , i coded this using Cocoa and really i was
a newbie back then and to tell you honestly i don't even know SM canopy default IP address.

September 25, 2011

Making your own 1 click script

EDUCATIONAL PURPOSES ONLY

I first posted ESN changer script way back 2009 (Filhacks) basically it connects though telnet and using "SendKeys" to 
simulate keyboard strokes, i've incorporated this with my Canopy Tools but im using TCP connections to connect to port 23

I will give you tips on how you can make your own 1 click VBscript using COM and WMI calls basically the steps depends on you, this can be also use with other network devices like changing MAC address of your Wi-max devices.
so let's start.


September 24, 2011

Canopy Tools 2.2 public version

MAC Changer

1. Format: 00:25:9C:02:9E:A1 / 00-25-9C-02-9E-A1 / 00259C029EA1
2. Options to Reboot NIC.
3. Device Information.
4. Reset to default MAC.
5. Release/Renew DHCP



ESN to IP converter script


VBScript code to convert Electronic Serial Number to IP Address, useful if you don't know your SM IP address (10 Series) .


Dim iHex(11)
strHex = InputBox("Enter Canopy E S N" & String(4,chr(10)) & "Ex: 0A003EFF04B5", "ESN Converter")
if Len(strHex) = 12 then
Set objRE = New RegExp

With objRE
.Pattern = "[^a-f0-9]"
.IgnoreCase = True
.Global = False
End With

Mac address changer via VBScript

I wrote this code long time ago and you can use this to change your NIC MAC address, it uses WMI to query available NIC's and also uses Registry provider to edit MAC address.

const HKEY_LOCAL_MACHINE = &H80000002
strChr = string(2,chr(10))
Dim strIndex
Set objGetService = GetObject("winmgmts:\\" & "." & "\root\cimv2")
set objArray = objGetService.ExecQuery _
("Select * From Win32_NetworkAdapterConfiguration Where IPEnabled = True")

For Each objItem in objArray
strCurrentMAC = objItem.MACAddress
strCaption = objItem.Description
strIndex = objItem.Index
strSelectNIC = MsgBox("Is this the NIC you want to select? " & strChr & strCaption,36,"Mac Assasin")
wscript.sleep 500

if strSelectNIC = 6 then
Exit For
End if
Next

Accessing SM/AP canopy engineering page


Note: you need 9.0 to 9.3 firmware

for regular users this won't matter much but for tinkers like me it's a helpful resource ex: Packet Dump.


1. Log on to your SM/AP

September 07, 2011

SmartBRO 9.5 update trick

Some AP's have been upgraded with 9.5 Firmware and with this firmware, you can deny registration from SM's with firmware lower than 9.5 by enabling "Only Allow Subscribers with Version 9.5 and Above"