Computer And Internet, Miscellaneous, Personal
I believe this topic is good for application developers. In this short article we will learn how to created SMS gateway and applicated it on worldwide-web using PHP script. What is SMS? SMS stands for short message service. It’s the text communication service component of phone or mobile communication systems, using standardized communications protocols that allow the exchange of short text messages between fixed line or mobile phone devices… more details about SMS please read in wikipedia.
I already written about how to build SMS gateway on my “Bahasa Indonesia” blog, but many people give negative comment on that article because that article is just illustration without real product. There is nothing goes wrong on that article, everything has requirement to created SMS gateway. I think people commenting negative on that article because they never use their brain to “think outside the box“.
Here is image illustration how SMS and Internet can be combined, this application can created a better experience for end users :

Enough for my bad introduction, before we start to learn how to created real SMS gateway we need some requirements in here:
- An computer to act as gateway and web-server.
- One or more Phone/Modem+SIM cards to act as connection between your SMS gateway and your provider.
- NowSMS program (60 days trials or buy) act as virtual machine to send and received SMS.
- Web hosting with PHP support (needed when you want to created an online worldwide-web application).
- An knowledge to solve a little problem.
First, we have to make our computers to be a web-server. I recommended to use XAMPP. It works on windows/linux operating system. Use your knowledge to solve all problem you may faced on this step, no need to ask me everything You may have to setting port forwarding on your router if necessary.


Next step is connecting your phone/modem to your computer. You can use USB-Cable, Bluetooth, Infrared, or anything that can be used to connecting your phone into your computer. Use your knowledge to solve all problem on this step. In this sample I used USB-Cable.

Next step is installing NowSMS and configure it. After you install NowSMS run it, program should show this screen, next click on add.

Choose which one fit on your configuration and then click OK.

Choose modem installed on your computer, then click test and add modem. In many case, mostly the problem is you might can connecting your Phone but your phone didn’t support for SMS. You can solve this case by use USB-Cable connection.

When you success on add modem, this screen will shown. make sure you click on test button once again.

Click on properties and write down your phone number, you can write phone/modem PIN if it required.

Run this sms gateway service when you needed to send SMS from worldwide-web application.

Try it on your local computers, by default port for SMS gateway is 8800. So you have to write http://localhost:8800 to see this form.

After this step our SMS gateway are ready to use. Next step is created application via PHP script to let us sending SMS or received SMS from internet.
Received SMS
First we have to created an MySQL database to recorded all incoming message to our database. Created a new MySQL database and then import this code:
# CREATE TABLE `inbox` (
# `id` int(5) NOT NULL auto_increment,
# `msg` text NOT NULL,
# PRIMARY KEY (`id`)
# ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
Next use this sample PHP script
# <?php
#
# // database
# $db_host = “localhost”;
# $db_user = “username”;
# $db_pass = “password”;
# $db_name = “database name”;
#
# // connect to mysql
# $link = mysql_pconnect ($db_host, $db_user, $db_pass) or die (“can’t connect”);
# mysql_select_db ($db_name) 0or die (“can’t select database”);
# $msg = trim($msg);
#
# //input to table inbox
# $sql = “INSERT INTO inbox
# SET id=”,
# msg=’$msg’”;
# $query = mysql_query($sql) ;
# ?>
Next step is configure setting on NowSMS program:
- Click 2-Way tab.
- Check Process Received SMS Messages
- Add SMS Command Prefix text, example: Idol (every SMS received with Idol prefix will added into database).
- Write your phone number on Receive Phone Number(s)
- Write http:/[yourdomainname]/[yourpath]/index.php?msg=@@FULLSMS@@ to Command to Execute.
- Click Add then click Apply.

When we received message to this phone number with right prefix it will automatically recorded into our database, on next step we can use this database to any application we need example: vote SMS, etc. Please be creative!
Sending SMS
Next, how we created an simple script to send SMS message from our web-server? I was searching on google and found this good sample script. It might be useful to use. Read the full sample SMS script in here. Use your imagination and be creative!
Ending
That’s it, enough the lesson for today If you like this script you can donate to me *LOL* I’m just kidding… If you want to test SMS application you can try this http://sms.istanto.net it would sending SMS message to all Indonesian GSM/CDMA network. Have a good day everyone :)
July 23rd, 2010 by Istanto
 Loading ...
Computer And Internet, Miscellaneous, Personal, Tips & Trick
In this short article we will learn how to created an custom google translate tools. Google translate tools is free translate service provided by google. This tools really help people to translate some website/page to any language people want.
Google translate tools standards is not really interesting in style *lol* So why we don’t created a simple good looking translate tools our own, but of course we have to credited google as this service provider? Alright let’s created it, I want everyone be creative as possible.

First we have to know how translate tools format working. Example:
http://translate.google.com/translate?hl=en&sl=en&tl=pl&u=http%3A%2F%2Fwww.istanto.net
This is standard format when google translate try to translating my blog from English to Polish. There is some rules we can manipulate it. Example, I try change tl=pl with tl=id:
http://translate.google.com/translate?hl=en&sl=en&tl=id&u=http%3A%2F%2Fwww.istanto.net
The result is I got id translation page (Indonesian). When I try change sl=en to sl=id I got result:
http://translate.google.com/translate?hl=en&sl=id&tl=id&u=http%3A%2F%2Fwww.istanto.net
So the answer is we can manipulate this format if we know country code! That it! Standard format would be like this:
http://translate.google.com/translate?hl=en&sl=[YOUR PAGE ORIGINAL LANGUAGE]&tl=[LANGUAGE YOU WANT TRANSLATED TO]&u=[PAGE SOURCE]
HL = Hidden Language? *lol* I Don’t know! This properties maybe the language setting on each computers or from where google page country we coming from.
SL = Source Language
TL = Translated Language
U = User
Okay we already know and understand this format, our next goal is created a custom html code to follow this format. This is a simple code I created, if you can please use CSS to make this code clean.
<style>
.translate img {
filter:alpha(opacity=100);
-moz-opacity: 1.0;
opacity: 1.0;
border:0;
padding-left:0px;
}
.translate:hover img {
filter:alpha(opacity=50);
-moz-opacity: 0.50;
opacity: 0.50;
border:0;
}
</style>
<div style=”text-align:center”>
<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”English” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cen&hl=en’); return false;”><img alt=”English” border=”0″ align=”absbottom” title=”English” height=”24″ src=”http://www.istanto.net/flag/uk-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>
<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”French” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cfr&hl=en’); return false;”><img alt=”French” border=”0″ align=”absbottom” title=”French” height=”24″ src=”http://www.istanto.net/flag/france-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>
<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”German” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cde&hl=en’); return false;”><img alt=”German” border=”0″ align=”absbottom” title=”German” height=”24″ src=”http://www.istanto.net/flag/german-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>
<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Spain” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Ces&hl=en’); return false;”><img alt=”Spain” border=”0″ align=”absbottom” title=”Spain” height=”24″ src=”http://www.istanto.net/flag/spain-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>
<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Italian” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cit&hl=en’); return false;”><img alt=”Italian” border=”0″ align=”absbottom” title=”Italian” height=”24″ src=”http://www.istanto.net/flag/italy-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>
<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Dutch” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cnl&hl=en’); return false;”><img alt=”Dutch” border=”0″ align=”absbottom” title=”Dutch” height=”24″ src=”http://www.istanto.net/flag/dutch-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>
<br/><br/>
<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Russian” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cru&hl=en’); return false;”><img alt=”Russian” border=”0″ align=”absbottom” title=”Russian” height=”24″ src=”http://www.istanto.net/flag/russian-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>
<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Brazil” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cpt&hl=en’); return false;”><img alt=”Brazil” border=”0″ align=”absbottom” title=”Brazilian” height=”24″ src=”http://www.istanto.net/flag/brazil-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>
<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Japanese” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cja&hl=en’); return false;”><img alt=”Japanese” border=”0″ align=”absbottom” title=”Japanese” height=”24″ src=”http://www.istanto.net/flag/japan-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>
<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Korean” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cko&hl=en’); return false;”><img alt=”Korean” border=”0″ align=”absbottom” title=”Korean” height=”24″ src=”http://www.istanto.net/flag/korean-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>
<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Arabic” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Car&hl=en’); return false;”><img alt=”Arabic” border=”0″ align=”absbottom” title=”Arabic” height=”24″ src=”http://www.istanto.net/flag/arab-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>
<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Chinese Simplified” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Czh-CN&hl=en’); return false;”><img alt=”Chinese Simplified” border=”0″ align=”absbottom” title=”Chinese Simplified” height=”24″ src=”http://www.istanto.net/flag/china-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>
<div style=”font-size:10px; padding:8px 0px 0px 0px”><a href=”http://www.istanto.net/how-to-creating-custom-google-translate-tools.html” target=”_blank”>Custom Google Translate Tools</a> – <a href=”http://www.google.com” target=”_blank”>Provided by google</a>
</div></div>
The result will be like this:

That’s looks beauty right? You can add more translated language if you want. All you need to do is preparing the country flag pictures and edited the code. I wan’t someone created wordpress plugins for this custom translate, you’re free to use code in here.
That’s the lesson for today, have a nice day.
July 2nd, 2010 by Istanto
 Loading ...
Make Money Online, Miscellaneous, Personal, Short Reviews
Do you have a lot of money? You want to grown your money without risk or only accept a low risk? where did you invest your money? on bank? did you know how bank’s managed your money? bank interest rates suck in short and long terms? Well.. That’s a good question to start this article.

If you have lot of money and you want your money grown without need you to work, there is only 2 options available.
- Invest your money in property, business, etc.
- Deposit your money on bank and earn interest rate.
The problem is sometimes you may face risk to loss your money if you invest your money in private way (this way is not recommended unless you know the risk and person). With a good management you could survive and rewarded (more money for you). Bank is always secure as usual, but their interest rate this day actually to low, How you can call that “interest rate” if actually it’s not really “interesting”? If you want to set your own rate without needed to worry about your money you should this, zopa.
What is zopa? zopa is a safe place where people meet to lend and borrow money. This is a good website idea, by lend your money you could help others people to grown their business. In other side, you actually also make money for yourself, this is really perfect idea! Basically this is a “win-win” solution for both side. Errmm.. not really, 3 side win in here I forget zopa *lol*
By lending in zopa you’re actually do a smart investment. Why? the reason is simple. People without money and plan to borrow money usually will using and managed that money with excellent way. Mostly 99% will run their business with serious because you know they have to pay back that money to you including fees. It’s not really bad as lender, if you’re just want to help people you can set your rate low.

After reviewing zopa I believe this is a good source website. Their management and strategy could help everyone to grown. Please remember of course everything has risk, it’s also applied for zopa.
If you’re not sure your money safe (lender) zopa give options to start your lend with only 50 euro. This money will spreaded, it wouldn’t spend to one person only (brilliant idea). We all know the risk, sometimes people do success to pay their loan but sometimes they don’t. In zopa I see they’re smart enough to manage your money and you will only faced a low risk, I recommended this site for everyone.
Good luck
July 1st, 2010 by Istanto
 Loading ...
Miscellaneous, Personal
Da*n I got fooled once again I hope this will be the last time I got scammed. I already learn many experience with all those scammer. This is my newest real personal story about fraud domain appraisal. I know this happen because I’m not doing research first. For everyone please do research first before you do something. It’s will really help you to stop get scammed by many f*cking scammer out there.
So it began, *lol* One day I got email from someone I don’t know (hammond@thenamepros.com, other report he was using another email address but words completely almost same, the good news IP always same all coming from 213.140.225.228) He send mail to me and asking how much I sell my domain name (ahooy.net, actually I listed it for testing if someone interest on that domain name). This email coming after I list my domain name on SEDO, that’s why I give title with this words “Target SEDO User“. Of course I interest and reply that email, and then he started to foolish me “In order to successful transaction with him, I must buy certificate domain appraisal on website he want (this website own by him).
So I just trust this scammer without research and start to buy certificate domain appraisal on www.bestdomainexperts.com (this site owned by those scammer) After I pay and they send to me a FAKE result I try to contact this guy again. He started to acting like really interesting to buy my domain name and try to foolish me again to using www.bestdomainexperts.com service (listing) I started to smell something wrong in here, I do research on google and found out this guy is scam lot of people on there, look at this URL: http://www.namepros.com/639974-another-scam-letter-elite-investment-group-4.html
After found this page, I try to manipulate this scammer to reveal some information but no luck, all email just trash words talking blablabla.. I open dispute on paypal (now escalate to claim) and email SWREG about this scammer. I really want to puch this guy on his face till he die if he in front of me *lol* Because this case I’AM OFFICIALY CLOSED ALL BUSINESS, OFFER, PARTNERSHIP, AND FRIENDSHIP REQUEST FROM NIGERIA AND RUSSIAN.
Next, You can see all screenshot of this conversation (ALL REAL, I GUARANTEE WITHIN MY LIFE) :
NOTE:
My goal is not this $81.xx but I want to jailed this frauders, I can simply earn more than $81.xx in one day. This is all about reputation not about money.
This is my proof about this guy is one person, he’s frauder, he’s scammer, don’t trust his words, everything he say just TRASH.



I use two email address on this conversation, ist***o[at]gmail.com (me) and ratna*****[at]gmail.com (my sister). Scammer using two email address hammond@thenamepros.com and info@namesaleshop.com, but all coming from same IP 213.140.225.228.
Please don’t laugh when you read this stupid conversation
1. Scammer start’s to refer me to website he want.


Read More »
June 30th, 2010 by Istanto
 Loading ...
Miscellaneous, Personal
No, This is not the end business of virtual credit card and bank account seller. This is just a small change on paypal website that allowed Indonesian paypal account getting verified using local bank account. Absolutely because of this small changes it will kill all virtual credit card seller for Indonesian costumer.
I got this news from email my friend sent to me, he claimed he can get verified on paypal using bank account only (without credit cards or debit cards). This is a good news, I live in Indonesia and I fell happy if paypal allowed we used bank account to get verified because it’s to expensive in here if you need credit cards, plus there is some security issue with Indonesian bank. No need to use virtual credit card anymore
Virtual credit cards business die? Nope! There lot country out there still need this service. My virtual virtual credit card and bank account store will not closed by this small changes. I just lost Indonesian costumer….. *LOL*
Here is the steps for Indonesian people who need to get their paypal account verified using local bank account only:
- Register for paypal account or login into your unverified account.
- Click on “Get Verified“.
- Click “Link My Bank Account“
- Enter your Bank Name, Bank Code, and Account Number. Then click Continue.
- Wait for 1-3 days to see micro deposit from paypal.
- Once you have this micro deposit amount, login back into paypal again then write the amount.
- Congratulation your paypal account verified.
Here is bank code:

When you need to withdrawn funds from your paypal account into your bank account you can read bank kliring code from my blog. The problem is I don’t know if paypal allowed we add fund paypal account using local bank account in here.
Haaahh… I’m gonna bankrupt *LOL*
February 2nd, 2010 by Istanto
 Loading ...
Miscellaneous, Personal, Tips & Trick
Actually I have been searching the way for doing this trick long time ago. How to show ads inside wordpress post (like a picture) but no lucky on the result. Usually information I got is only showing ads inside the article but with standard size 480×60 or just a simple plugin to show ads in the first,middle or the end article. I want a beauty position, this position will be a good spot for ads inside wordpress article.
I fell really stupid when I found the tricks is really simple *lol* Tested it on my technology reviews blog…
The result will be like this sample:

When I tested it with another modern browser, firefox and opera the result is same beauty:


How to doing this tricks? Just follow this 5 simple steps
1. Login into your wordpress admin panel.
2. Click on Appearance, then click editor.
3. Click on your single.php files (it’s actually single post for wordpress).
4. Find the text “php the_content(‘Read the rest of this entry »’);” before this text add this code:
<div style=”float:left; padding-right:10px;”>
Your Ads Code Here
</div>
5. It’s done! You can customize it to make it looking good.
Hahaha this is my shortest article, enjoy it people! have a nice day
January 27th, 2010 by Istanto
 Loading ...
Computer And Internet, Miscellaneous, Personal, Tips & Trick
This is a new stupid virus/trojan that will redirected all your traffic to google.com (209.85.225.99) infected my client on 01-01-2010, This virus was made using visual basic with size around 212-233KB. If active it has another supported files with random size.

How to know if you’re infected?
It’s very easy, if you browsing on internet or opening antivirus website then your page always redirected to google website that mean you’re infected by this virus.

Master Files
When this virus active it will created some master files and downloading some another supported files from internet. It will spreading files in different location to make it hard to cleaned. This virus also hiding as windows service and windows drivers.
This is a list of virus master files:
- %systemroot%\windows\system32
- wmispqd.exe
- Wmisrwt.exe
- qxzv85.exe
- qxzv47.exe
- secupdat.dat
- %systemroot%\Documents and Settings\%user%\%xx%.exe, Where xx is random character with size 6KB (example: rclxuio.exe).
- %systemroot%\windows\system32\drivers
- Kernelx86.sys
- xx%.sys, where xx is random character with size 40KB (example: cvxqkopsd.sys)
- Ndisvvan.sys
- krndrv32.sys
- %systemroot%\Documents and Settings\%user%\secupdat.dat
- Netsf.inf
- Netsf_m.inf
Spreading Technique and Virus Affect
This virus will spreading in your network or using any removable disk using a autorun technique. If we look in the back mostly all virus using this same technique to spreading, Maybe a good option to modify your windows to disable autorun.
Virus will blocking some windows function like: System Restore, Windows Firewall, RPC DCOM, etc. Virus will also redirected mostly antivirus or security website into google.com using hosts file.

How to Remove W32/SmallTroj.VPCG
1. Deactivated “System Restore” when in cleaning progress.
2. Disconnected your computer from Network/LAN.
3. Rename msvbvm60.dll (%systemroot%\Windows\system32\msvbvm60.dll) to backup.dll This step to prevent virus active because this virus was made using visual basic, virus will need msvbvm60.dll to run, when you rename it virus can’t active. After you cleaned this virus I recommended you to rename backup.dll back to msvbvm60.dll.
4. Deleted virus master files using Mini PE2XT, Because some rootkit hidden as windows service and driver you need to boot your computers using Mini PE2XT then follow the step:
Menu -> Programs -> File Management -> Windows Explorer
Then deleted files “Virus Master Files” (check in this article).

5. Deleted registry made by virus using Mini PE2XT
Menu -> Programs -> Registry Tools -> Avast! Registry Tools
HKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\run\\ctfmon.exe
HKEY_LOCAL_MACHINE\system\ControlSet001\services\kernelx86
HKEY_LOCAL_MACHINE\system\CurrentControlSet\services\kernelx86
HKEY_LOCAL_MACHINE\system\CurrentControlSet\services\passthru
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\ctfmon.exe
HKEY_LOCAL_MACHINE\system\ControlSet001\services\%xx%
HKEY_LOCAL_MACHINE\system\CurrentControlSet\services\%xx%
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\DomainProfile\AuthorizedApplications\List
* %windir%\system32\ wmispqd.exe = %system%\ wmispqd.exe:*:enabled:UpnP Firewall
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\DomainProfile\AuthorizedApplications\List
* %windir%\system32\ wmispqd.exe = %system%\ wmispqd.exe:*:enabled:UpnP Firewall
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\AuthorizedApplications\List
* %windir%\system32\ wmispqd.exe = %system%\ wmispqd.exe:*:enabled:UpnP Firewall
HKEY_LOCAL_MACHINE\software\microsoft\windows nt\currentversion\winlogon
* Change string value Userinit to = userinit.exe
ATTENTION: %xx% is random character, this key created to run .SYS with size 40KB.

6. Restart your computer then use this repair-inf (rename it to repair.inf) right click on it then choose install.
[Version]
Signature=”$Chicago$”
Provider=Nobody
[DefaultInstall]
AddReg=UnhookRegKey
DelReg=del
[UnhookRegKey]
HKLM, Software\CLASSES\batfile\shell\open\command,,,”"”%1″” %*”
HKLM, Software\CLASSES\comfile\shell\open\command,,,”"”%1″” %*”
HKLM, Software\CLASSES\exefile\shell\open\command,,,”"”%1″” %*”
HKLM, Software\CLASSES\piffile\shell\open\command,,,”"”%1″” %*”
HKLM, Software\CLASSES\regfile\shell\open\command,,,”regedit.exe “%1″”
HKLM, Software\CLASSES\scrfile\shell\open\command,,,”"”%1″” %*”
HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon, Shell,0, “Explorer.exe”
HKLM, software\microsoft\ole, EnableDCOM,0, “Y”
HKLM, SOFTWARE\Microsoft\Security Center,AntiVirusDisableNotify,0×00010001,0
HKLM, SOFTWARE\Microsoft\Security Center,FirewallDisableNotify,0×00010001,0
HKLM, SOFTWARE\Microsoft\Security Center,AntiVirusOverride,0×00010001,0
HKLM, SOFTWARE\Microsoft\Security Center,FirewallOverride,0×00010001,0
HKLM, SYSTEM\ControlSet001\Control\Lsa, restrictanonymous, 0×00010001,0
HKLM, SYSTEM\ControlSet002\Control\Lsa, restrictanonymous, 0×00010001,0
HKLM, SYSTEM\CurrentControlSet\Control\Lsa, restrictanonymous, 0×00010001,0
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden, CheckedValue,0×00010001,0
[del]
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\System,DisableRegistryTools
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\System,DisableCMD
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer,NoFolderOptions
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Run,ctfmon.exe
HKLM, SYSTEM\ControlSet001\Services\kernelx86
HKLM, SYSTEM\ControlSet002\Services\kernelx86
HKLM, SYSTEM\CurrentControlSet\Services\kernelx86
HKLM, SYSTEM\CurrentControlSet\Services\mojbtjlt
HKLM, SYSTEM\ControlSet001\Services\mojbtjlt
HKLM, SYSTEM\ControlSet002\Services\mojbtjlt
HKLM, SYSTEM\ControlSet001\Services\Passthru
HKLM, SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore
HKLM, SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate, DoNotAllowXPSP2
HKLM, SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate
HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\ctfmon.exe
7. Deleted all temporary internet files using ATF Cleaner.
8. Restore your hosts files using HostsXpert.

9. To make sure your system totally clean and to prevent virus from coming back please scan full your system using Norman Malware Cleaner, If you don’t like Norman I would recommended you to use AVIRA.
Good luck!
January 10th, 2010 by Istanto
 Loading ...
Make Money Online, Miscellaneous, Online Business, Tips & Trick
Did you got a lot of mobile traffic on your blog? You stress on turning your blog become friendly view on mobile browser? If this your problem then you must be happy for this article. For worpress user you can turn your blog become mobile friendly view using MobilePress plugins. This is really nice plugins, just download it then upload into your hosting server, Activated it and you’re ready for mobile viewer!

Using this mobilepress plugins you also can joined their mobile ad network and analytic. Analytic can really help you to know how much visitors look on your blog using their cellphone. Badly mobilepress only offer Aduity ad service. But don’t be sad we can edited this theme and using another mobile ad network. Right now all I know about good mobile ad network are AdMob, Adsense for mobile, and AdModa. Register to one or all from this network, after you get accepted you can start to generate code for your mobile ads, put it into your mobilepress theme and try to look it from your cellphone.
This day trends about mobile site are growing, not really big but it’s enough to start a new trend. I take sample from admob they claim Global Impressions Served 135,733,769,195 This is really good opportunity for converting your popular blog become mobile friendly site.
Good luck, have a nice day
December 14th, 2009 by Istanto
 Loading ...
Miscellaneous, Personal, Tips & Trick
In this article we will learn how to secure our wordpress blog using some .htaccess technique. Of course there is no system perfect in this world. Everything should have bug, no matter it’s high or low risk. When last time you have seen blog with wordpress got hacked? Well, This happen to me 3 times on one of my crazyporn blog. The hackers always controlling my admin panel and it’s happen 3 times until I playing with my new toys to stop this guy.
What is .htaccess? In several web servers (most commonly Apache), .htaccess (hypertext access) is the default name of a directory-level configuration file that allows for decentralized management of web server configuration. Read full in wikipedia. Back to the topic what should we do to stop hackers controlling our admin area?
There is lots of technique, what I write in here just some technique using .htaccess files:
- Protected your wp-login.php files.
<Files wp-login.php>
Order deny,allow
Deny from All
Allow from xxx.xxx.xxx.xxx
</Files>
Where xxx.xxx.xxx.xxx is your IP, if you meet problem to know your IP just look on IPchicken.com
- Protected your wp-config.php
Wp-config is vital configuration files for wordpress, it should secured to stop people viewing it’s content.
<files wp-config.php>
order allow,deny
deny from all
</files>
- Protected your wp-comment-post.php
Even if you’re using Akismet plugins, to reduce spambot post via remote access you can use this code. (Change yourblog.com with your own domain name)
RewriteEngine On
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .wp-comments-post\.php*
RewriteCond %{HTTP_REFERER} !.*yourblog.com.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) ^http://%{REMOTE_ADDR}/$ [R=301,L]
- Protected .htaccess file.
This code will protect all files with “.hta” string on it.
<Files ~ “^.*\.([Hh][Tt][Aa])”>
order allow,deny
deny from all
satisfy all
</Files>
After using this tips the hackers can’t controlling my wordpress admin panel again hahaha! he try to inject using wordpress bug but when I limited IP to access admin panel he’s cry *lol* yay, I win! finally I beat this noob *lol*
December 14th, 2009 by Istanto
 Loading ...
Miscellaneous, Personal
I got this information when I doing blog walking to my friends blog, Paypal promote their self to country around ASIA. I got information from some source that Paypal will get some big competitor, said AMEX , etc. That’s maybe the valid reason they promote and giving free gift to people around ASIA. This free gift only valid to specific country: India, Thailand, Malaysia, Korea, Vietnam, Philippines, Indonesia, and Singapore. If you out from this country then sorry you can’t join this offer.

How to get $100 free from paypal? follow this step:
- You should have facebook account. If you don’t have created one or you can’t join this offer.
- Entering Paypal Wishlist page.
- Enter your email paypal verified account, you can’t join this offer if you don’t have paypal verified account. Problem with credit cards or debit cards? get virtual credit card from my store!
- Created your wishlist item, You can share it with your friends.
- Invite some friends then sit back and relax.
That’s it just follow all step, but before you joined please read this Terms and Condition first:
- You should have registered on paypal wishlist program in date around 16 November 2009 – 31 December 2009.
- Created new paypal account or using existing account (should a verified account!)
- At least 18 years old and resident in this country: India, Thailand, Malaysia, Korea, Vietnam, Philippines, Indonesia, and Singapore.
- You paypal account must be in good standing, not in suspend or unverified.
- Created paypal wishlist and promote it.
This free $100 is maximum, It’s mean you can’t go higher than $100 per account. This $100 will be paid to your paypal account around 28 February 2010. You should login into your paypal account in february 2010 to eligible for this free $100.
Good luck, have a nice day
November 25th, 2009 by Istanto
 Loading ...
|
|