Using this script you can get a file to server and send it to the browser.
Quote:
<?php//get the file (e.g. image) and output it to the browser$ch = curl_init(); //open curl handlecurl_setopt($ch, CURLOPT_URL, $_GET['url']); //set an urlcurl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //do not output directly, use variablecurl_setopt($ch, CURLOPT_BINARYTRANSFER, 1); //do a binary transfercurl_setopt($ch, CURLOPT_FAILONERROR, 1); //stop if an error occurred$file=curl_exec($ch); //store the content in variableif(!curl_errno($ch)){ //send out headers and output header ("Content-Type: ".curl_getinfo($ch, CURLINFO_CONTENT_TYPE).""); header ("Content-Length: ".curl_getinfo($ch, CURLINFO_CONTENT_LENGTH_DOWNLOAD).""); echo $file;} else echo 'Curl error: ' . curl_error($ch);curl_close($ch); //close curl handle?>
In recent days you'd probably seen a quite high temperatures outside the window. At least in the city where I'm living it was surely hot.
But that's not a problem. There're alot of ways to spend time at home, more even when internet is fast and capable enough.
Alot of things can be found on Youtube and DeviantArt, and using Google more stuff could be found.
More content I'll probably add later, so that blog and the site would not feel abandoned after a some time.
Some may ask What is BartPE... It's a Windows LiveCD that's based on Windows PE built with a program called PeBuilder.
If you got a PE Builder, get a plugin called XPE to get explorer shell, (you may also nead other plugins for other programs you may use). For XPE, look into http://oss.netfarm.it/winpe/
Once you built BartPE (with XPE included) you will see a desktop environment very similar to preinstalled windows (screenshot below). Read More...
To disable autorun on certain types of removable drives, You nead to get a TweakUI freeware utility from Microsoft.
When you start this program goto Section [Program tweak list]=>[My Computer]=>[Autoplay]=>[Types] and uncheck to disable certain options for added security...
For more tips look in other blog posts or visit later...
As you read from the title it's a true news for all Carmageddon fans. But recently due to heavy visitors traffic the site was horribly down. It's announded by Stainless Games it seemz it will be the hell of a total remake or alike. Don't forget to check carmageddon.com, you'll find interesting things and a way more
There goez some graphix for you
In this video you will see how to write a nice hacking program using masm32 assembler. All you need to get it from masm32.com and use some capable text editor to edit source files. You can set or point the editor option of compilation to masm compiler there out.
This is a first implementation of youtube on my site so this gotta do alot
As the title says it will be grand opening of a new site and a publicity for a new game from Carmageddon series. The site will open in the three days from now. The domain is registered by square-enix, it's the company who bought another one that had rights on it. So it seemz taht there will be next carmageddon crash course soon
Check out carmageddon.com site, there's a tree skulls image as above and a countdown counting to it's possible opening
Have you ever wondered how to run a program on SYSTEM account on Windows XP? It's pretty easy. For first you nead an account with an Administrator privileges running on your desktop. Next, open command line and type
Quote:
at time /interactive cmd.exe
where time is your current system time plus one minute (e.g. 11:08) and cmd.exe is a program that currently will run. On this way you can run any program with system privilages without any fuss. Happy system hacking
The site engine has been coded from scratch. The modules are coded separately eath other. Server Time: 01:13. Dates and times are shown in Lithuanian (GMT +2) timezone
Add a Comment