Thursday, December 31, 2009

Get rid of the Microsoft Windows Not Genuine error

Hi,

Guess what happen when you try to update your Windows Installer Package, or Windows Media Player, or Internet Explorer from Microsoft website?

First, it would ask you to download Windows Genuine checker software to validate your Microsoft Windows is a Genuine edition (not pirate). But if you run the checker software and you have pirated Windows installed, you are so busted! You wont able to update your desired software and it will be keep annoyed or nagged by lousy error windows each time you login and use your machine.



When Microsoft come up with the checker software, it was new and not hack-able. As result of it, you need to get reformat your machine to get rid of the checker software.

But now, hackers again smarter. They had come up with crack that would able to get rid of the annoying error message by marking your machine as a "Valid License User." The best part is, it not only works for Windows XP, but also works fine for Windows Vista.

I have tested it on my own machine as well as on my friend's laptop which got affected by the Genuine error. It works really fine.

Here is the file:
http://reganrajan.com/useruploads/files/Windows_OS_Genuine_Crack_Works.rar

Extract the "Genuine" folder to hard disk, I suggest use your windows folder. Then run the file "Crack XP.bat" if you using Windows XP or "Crack Vista.bat" for Windows Vista. And, its done! That simple. You might notice that it would have reset your default background. Worry not, just change back the background wallpaper to your previous wallpaper.

Note:
Use the tool provided wisely and do not hotfile the file. Thanks ya!
If you do not know how what is RAR and how to open RAR. It is just like ZIP folder but instead compression is RAR. To open RAR, you just need to download and install WinRAR. Its free for evaluation, and evaluation can be forever.

Have a nice day. Have fun all the time!

Crack Powerpoint (or any other MS office file) Password!

Hi,

This is yet another of my success story. Recently one of my client throw me a Microsoft Powerpoint (.ppt) file and asked me to crack it. I love when my clients throw me challenges!

I know that it is of course possible because previously I had crack a Microsoft Excel. But too bad I did not blog about it and now I even forgot how I did that hack. That is the reason why I am blogging now regarding this Powerpoint hack, I know I will forget soon, so better note it in blog rather than diary as it would benefit others as well.

My game started like this, I googled, googled, and googled for whole day and found only 1 software with the name of "Office Password Recovery Magic" which I got it with serial number so it was full-ware. But sad that the software was using "Brute-force Attack" as default if you know what I mean, it is something like the software will try inserting all possible characters and it will take hell a lot of time. Guess what? I run the software over-night on my server machine. Even after 1 day also could not hack it.

As you might know, I hate waiting, so once again, back to googling. This time I found "Advanced Office Password Recovery Professional (AOPRP)." It is a recommended tool for hacking MS Office files. I tried looking for the cracked version of it but did not find any. I did download some different version and unable to crack the software as version conflict. Finally I found the bundle pack which was nearly 66MB. Bundle pack consist of all Elcomsoft's software with the serial numbers.

I downloaded the bundle, installed only "Advanced Office Password Recovery 4.11 Professional". I used the given serial and the software was cracked. I run the software and opened the Powerpoint file. Take note that I install the software on my laptop as well as server. I run the software from the server as I doubt it would take another 1 or 2 days to complete the hacking of the Powerpoint through Brute-force attack.

AOPRP's default attack mode is dictionary. I proceed the attack and within less than 1 second, it showed me the password! Seriously! It took just 1 second? Hell, how dumb I was for running the previous software over-night?

See the attached screenshot: (password showed in just 1 second? Gosh, hackers are smarter)



If you drop to this blog while you are looking for software to hack and I am glad to share with you my knowledge and the software, download this:
http://reganrajan.com/useruploads/files/Advanced_Office_Password_Recovery_4.11_Professional.zip (serial number included)

If in case your file password is not dictionary password, then try the brute-force attack and give it some time.

Bottom line, as moral of the story; always use 14 digit above password and remember to include numbers and symbols when you want to protect your file. Example password: reganrajan*87#smart. This password would at least take 2 to 3 days to be hacked on brute-force attack (depend on your CPU speed as well). Only the person who is sincere to hack your file would wait until 3 days, duh!

Have fun kids! Ops, have funs guys!

Sunday, December 27, 2009

Internal Error 500 on Xampp if htaccess exist

Hi,

I was being irritated about the '.htaccess' which is being used widely nowdays to rewrite the URL or in another word; they use it to fake the URL.

In Xampp or any PHP service, the rewrite module is disabled by default. The internal server error 500 will display if you try to execute a directory which has the htaccess and requires rewrite_module. So, you must enable the rewrite module or delete your htaccess file in order to execute any script from that directory.

Deleting the htaccess could be only temporary solution. Enabling the rewrite module would be the real right solution.

I googled for it and found good advise from: http://blogulate.com/content/fix-500-internal-server-error-on-htaccess/ which the blog was written by 'thinkdj'. Credit goes to him.

Here is his original text:
Firstly, make sure LoadModule rewrite_module modules/mod_rewrite.so is enabled in httpd.conf (Remove # before the line to enable)
Then, edit httpd.conf .. Find out the foll lines and mod -
<directory> #replace this with your dir name
Options Indexes FollowSymLinks
Order allow,deny
Allow from all
AllowOverride All #Added
</directory>
<directory>
Options FollowSymLinks
# AllowOverride Limit #Old Value
AllowOverride All #Added
Order deny,allow
Deny from all
Satisfy all
</directory>


After doing the changes I had restart the php service and it works fine now.

Hope that solved your problem too!

Have fun scripting!

Tuesday, December 22, 2009

How to add subdomains.localhost if using XAMPP?

Hi,

After a long gap (nearly 2 years) of no blogging, finally I got my time to blog again. Mainly because I am back active being freelance programmer and interested to share some stuffs that I found with you guys.

I always used XAMPP to run PHP and recently I badly needed to have subdomains under localhost for one of my client's web to work. So I kick my ass and searched for "how to", many was there but missing the important pinch. Therefore I thought maybe sharing my own way would be helpful for someone else out there!

I found http://www.offshootinc.com/blog/2007/12/21/setting-up-a-subdomain-on-localhost/ but not worked because missing double quotes and NameVirtualHost. I continue googling and found this: http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/

That one worked like charm!

To cut the crap short; just add like this in C:\xampp\apache\conf\extra\httpd-vhosts.conf;

NameVirtualHost *:80
<virtualhost>
DocumentRoot "C:/xampp/htdocs"
ServerName localhost
</virtualhost>
<virtualhost>
DocumentRoot "C:/xampp/htdocs/sub"
ServerName sub.localhost
</virtualhost>

And add this in the C:\Windows\System32\drivers\etc\hosts
127.0.0.1 localhost
127.0.0.1 sub.localhost

I am using "XAMPP for Windows Version 1.6.6a" and it worked fine!

Have fun! But if the above method did not work for your version of XAMPP then continue googling and good luck! Don't ever get disappointed when you can't figure it out. Because I understand that messing with server is the most irritating task (after messing with scripts). And there is definitely a way to do it out there. Keep googling and keep on googling!

Take care ya!

=========== Updates on 26th March 2010 ===========
If you are running Windows 7, then you cannot simply edit the host file. Instead, you must right-click on Notepad and select "Run as Administrator". This would open the notepad.exe application with Administrator permission. Then, open the"C:\Windows\System32\drivers\etc\hosts" inside the Notepad through File > Open. Remember you must view the file-type with "All files" instead of "Text File". After opening the host file, you can edit and save it.

In xampp apache config ("C:\xampp\apache\conf\extra\httpd-vhosts.conf"), you must write like this
NameVirtualHost 127.0.0.1:80
<virtualhost 127.0.0.1>
DocumentRoot "C:/xampp/htdocs"
ServerName localhost
</virtualhost>
<virtualhost 127.0.0.1>
DocumentRoot "C:/xampp/htdocs/sub"
ServerName sub.localhost
</virtualhost>

That's it! Your Windows 7 can run Xampp with sub domains too.


=========== Updates on 31st October 2014 ===========
The setting above only allows to run single subdomain. To have multiple subdomains, in the httpd-vhosts.conf, set it to be like this:

NameVirtualHost *:80

<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs/folderX"
ServerName domainX.localhost
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs/folderY"
ServerName domainY.localhost
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs"
ServerName localhost
ServerAlias www.localhost
</VirtualHost>

Also remember to update your C:\Windows\System32\drivers\etc\hosts to include the new subdomain like this:
127.0.0.1 localhost
127.0.0.1 domainX.localhost
127.0.0.1 domainY.localhost

Sunday, March 16, 2008

ReganRajan.com website is down?

Hi,

I am currently moving my web from ASP to PHP server. First reason for doing that: my free ASP host is no longer ad-free host, they force my web to include their advertisement which I strongly against because why must my web have their ads although I can get an ad-free host?

Second reason for the migration: previously companies used to see ASP web as a professional web but now days the companies themselves impress with the capability of PHP to fight against ASP as PHP is open source and a lot of development happening in PHP. This is not a joke, true that PHP is being well accepted by these professional companies. Somehow, from my point of view, PHP cannot beat the capability of ASP.NET although it win against the classic ASP.

My web should be up as soon as the migration process finish. Meanwhile my website reganrajan.com will be redirected to this blog.

Bye bye ASP, hello PHP!

Thank you.

Regards,
Regan Rajan
GIT Engineering Technologies

Sunday, March 2, 2008

Easy way to download FLV


Hi all,

FLV is popular video format now days, and what do i wish most? To download these FLV rather than watch it online because the hosting server won't play the video stable and will keep buffering (will irritate me actually!)

I happen to use few different websites to grab the flv file url and download it using Free Download Manager. The download speed will be far better and satisfying. I will happily watch the FLV once the download is complete. And this time the video won't buffer anymore and plays just fine :)

Happy moment starts!

Buy hey, rather than depend on different websites to grab the FLV file, it would be heaven if I found one single tool to download the FLV in easy way. And i found my heaven :) I mean found the tool, Internet download manager does the magic.

I downloaded and installed it, when I surf to watch movie any website that plays FLV video file, I can just right-click on the website and select "Download FLV content using IDM" and it will force the FLV url to be sent to Internet Download Manager, the FLV file will be downloaded by IDM right away.




If you don't believe, try it yourself. But IDM is not a free software and so far I did not manage to find any crack for it. The version that I downloaded is 5.12 Build 8.

Saturday, February 2, 2008

Crack or Hack MS Access password

Hi all,

Recently I installed a software that runs with MS Access tables on back-end of the application. I wanted to enter the database so i can change some absolute values. I googled and hey, I found the right tool: Advanced Access Password Recovery v2.5

I downloaded it and it was a trial version. It showed first 3 character of the password. I was happy with it and decided to crack the software to get full feature to view complete password of any MS Access database. And the crack is just a serial number and hey, once again I was happy to see the crack was successful and able to view the complete password and I edited some values inside the database.

I strongly recommend you to have : Advanced Access Password Recovery v2.5 tool to hack/crack any MS Access Password Protected databases!

Have a nice day all.