Showing posts with label Tutorial. Show all posts
Showing posts with label Tutorial. Show all posts

Cruehead CrackMe v1.0

A crackme (often abbreviated by cm) is a baby affairs advised to analysis a programmer's about-face engineering skills
They are programmed by added reversers as a acknowledged way to "crack" software, back no aggregation is getting abandoned upon.
Crackmes, Reversemes and Keygenmes about accept agnate aegis schemes and algorithms to those begin in bartering protections. However due to the advanced use of packers/protectors in bartering software, abounding crackmes are in fact added difficult as the algorithm is harder to acquisition and clue than in bartering software.
A Keygenme accurately is advised for the reverser to not alone acquisition the algorithm acclimated in the application, but aswell address a baby Keygen in the programming accent of their choice. Although, a lot of keygenmes appropriately manipulated can be self-keygenning.
Cruehead CrackMe v1.0 Tutorial


How to setup appserv 2.5.10 On windows

What is AppServ?


AppServ the begining.
       AppServ is not support by Thai Goverment or Corporation but this program was inspire by Phanupong Panyadee (AppServ Foundation). Concept of AppServ it is Easy to install Apache, PHP, MySQL in 1 minute. Many people in this world have problem when Install Apache, PHP, MySQL becuase use long time to configure and some time can make dizzy. First time of distribution provide on October 9, 2001. Many people use AppServ and growing up everywhere in this world. Right now AppServ website provide in Thai and English language. For the future AppServ wet site will provide every languages on world.

AppServ is.
    AppServ is a full-featured of Apache, MySQL, PHP, phpMyAdmin. You can setup in 1 minite.
        Package of AppServ
             - Apache
             - PHP
             - MySQL
             - phpMyAdmin
    All packages download from Official Binary Release. AppServ objective just make easy to setup. We do not provide anything else more than Official Binary Release package. Becuase we think the Official Binary Release work better than compile by individual or third-party binary.
AppServ have only special configuration when install, Apache configure httpd.conf, MySQL configure my.ini, PHP configure php.ini. AppServ can guaranty any package from AppServ can work stable like Official of Apache, PHP, MySQL Release.
    Objective of AppServ Just Easy to install. You can setup web server, database server in 1 minute.For some question AppServ can be Real Production Web Server or Database Server. We can tell you Yes !! 100% can make AppServ to provide Production Server. But Windows OS is not good enough for heavy load on you web or database server.Windows OS architecture use more memory and CPU usage we recommend you to use Linux/Unix OS to service heavy load of work. Because Linux/Unix OS have more speed and use less memory and CPU usage. If you compare hit when use Windows OS and Linux/Unix OS you must be found a very difference speed. e.g. Windows can handle 1000 users per second but Linux/Unix OS can handle more than 1000 users per second and eat a little memory and cpu.

How difference of AppServ version.
    AppServ Version
          2.4.x is a Superb stable version work for all user, by the way this version use PHP 4.x because work fine with your old PHP code.
          2.5.x is the Rock function. This version provide newest and experimental of Apache, PHP, MySQL.

Recommend for AppServ
     We recommend for all AppServ user. You do not upgrade to new version every time when released. You should to select some version for your work if you think this version stable for you. New version is not mean good. 
from :http://www.appservnetwork.com/modules.php?name=Content&pa=showpage&pid=7


Now the tutorial 


 

Install Pligg Content Management System

CSS3 Tutorial : Text-shadow



Web2-Teach

text-shadow: 1px 1px 10px #555;
Text-shadow CSS property is used to add shading to the elements of HTML text. Includes figures for grammar, X-offset, Y-offset Finally, the amount of blur and the colors of real shadows. In addition, it is not necessary to set a shadow, you can create several text-shadow values ​​to create really cool effects.
  
Other Demo :

Fire

 

text-shadow: 0 0 20px #fefcc9, 10px -10px 30px #feec85, -20px -20px 40px #ffae34, 20px -40px 50px #ec760c, -20px -60px 60px #cd4606, 0 -80px 70px #973716, 10px -90px 80px #451b0e;

Inset


text-shadow: 0px 2px 3px #666;

How To Protect Our Php script From LFI (local file include)



Hello everybody,

Today We Will Learn How To Protect Our Php script From LFI (local file include)

Lets test ./

<?

include($_GET["file"].".php");

?>

Ops Error Ok

The attacker can exploit this error to show config file or other files  



first we will add that @ before include func ./

<?
@include($_GET["file"].".php");
?>


Now we can see no error but the code will be executed 



     because when we use @ operator in php expression any error messages

            that might be generated by that expression will be ignored./

what is the solution now ??

The solution is to use an function to replace the bad requisites

<?

function LFI($get)
{
$bad=array("%","","../","/","../..","base64","<",">","php://");
$get=str_ireplace($bad,'',$get);
return $get;
}

@include(LFI($_GET["file"]).".php");

?>

the job is done our php code is safe 100%


Jquery Tutorial part 3


video 



fadeOut ( [speed|speed][, callback] ): 

I to fade out the element by operating the transparency of each element is displayed.

Animation effects are executed at the speed that you specify.

Specifies the time, in milliseconds, to complete or, "slow", "normal", "fast", the speed. If "1500" for example, the animation is done over 1.5 seconds.

, "Normal" if it is omitted that I used.

In addition, you can also be specified in the second argument to the function to be called when the effect is complete.

fadeIn ( [speed|speed][, callback] ):

By manipulating the transparency of each element, we fused to display the hidden items.

Animation effects are executed at the speed that you specify.
Specifies the time, in milliseconds, to complete or "slow", "normal", "fast" speed. If "1500" for example, the animation is more than 1.5 seconds.
"Normal" if it is omitted that I've used.

In addition, you can also be specified in the second argument of the function to call when the effect is complete.


fadeTo(speed, opacity, [callback]) :



I will give the effect of changing gradually to the specified value, the transparency of each element.

Animation effects are executed at the speed that you specify.
Specifies the time, in milliseconds, to complete or, "slow", "normal", "fast", the speed. If "1500" for example, the animation is done over 1.5 seconds.

(A state that does not transmit) concentration of 1 100%, to reach transparency is specified as a fully transparent state 0. If 0.33, this is the appearance of 33%, for example.

In addition, you may also be specified in the third argument to the function to be called when the effect is complete.





Finale code :

<?/*
dzKabyle

http://web2-teach.blogspot.com
*/?>
<style>
.show_div, .li-box, .show_hide{
-webkit-border-radius: 15px;
-moz-border-radius: 10px;
border-radius: 10px; 
}
.show_div{
border:solid 1px #8e8e04; 
background:#FFFFCC;
color:#222222;
padding:6px;
text-align:center;
}
.li-box{
border:solid 1px #27739d; 
background:#94d5fb 97% ;
color:#222222;
padding:6px;
text-align:center;
}
.show_hide{
border:solid 1px #90ac13; 
background:#eef4d3 ;
color:#222222;
padding:6px;
text-align:center;
}

.a {
font-size: 24px;
border:solid 1px #ba4c0e; 
background:#ffcaa4;
color:#222222;
padding:6px;
text-align:center;
}

</style>
    
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
    
    <script>
    $(document).ready(function(){
  $("#hide-box").click(function(){
        $("#li-box").fadeOut(800,function(){});
    });
    $("#show-box").click(function(){
        $("#show_div").fadeIn(800,function(){});
    });
   $("#toggle_box").click(function(){
        $("#toggle_div").fadeTo(800,0.5,function(){});
    });
 });
    </script>
</head>

<body>
  <span class="a"><a>Example : fadeOut</a></a></span><br><br>
<span id="hide-box">Out</span><br><br>
<div id="li-box" class="li-box" >fadeOut</div><br>
  <span class="a"><a>Example : fadeIn</a></span></a><br><br>
<span id="show-box">In</span><br><br>
<div id="show_div" class="show_div" style="display:none" >fadeIn</div>
<br>
  <span class="a"><a>Example : fadeTo</a></span><a></a><br><br>
<span id="toggle_box">fadeTo</span><br><br>
<div id="toggle_div" class="show_hide" >Trans</div>
<br>

Jquery Tutorial part 2 : slideUp() slideDown() slideToggle()

video



slideUp( [speed|speed][, callback] ):
I want to hide the element ("div") by manipulating the height of each element, disappeared from the bottom to the top.
Animation effects are executed at the speed that you specify.
Specifies the time, in milliseconds, to complete or, "slow", "normal", "fast", the speed. If "1500" for example, the animation is done over 1.5 seconds.
, "Normal" if it is omitted that I used.
In addition, you can also be specified in the second argument to the function to be called when the effect is complete.



click
and View the results 





slideDown( [speed|speed][, callback] ) :

I have to show the element ("div") by manipulating the height of each element, come down to slide from top to bottom.

Animation effects are executed at the speed that you specify.
Specifies the time, in milliseconds, to complete or, "slow", "normal", "fast", the speed. If "1500" for example, the animation is done over 1.5 seconds.
"Normal" if it is not set I is used.

In addition, you can also be specified in the second argument to the function to be called when the effect is complete.
click


and View the results


 Save 50% Now on Go Daddy SSL Certificates! Only $www.1and1.com
10 Day Free Trial from TollFreeForwarding
BuyBuy


slideToggle( [speed|speed][, callback] ):
Operate the height of each element, we performed alternately operation slideDown / slideUp.

Animation effects are executed at the speed that you specify.
Specifies the time, in milliseconds, to complete or, "slow", "normal", "fast", the speed. If "1500" for example, the animation is done over 1.5 seconds.
, "Normal" if it is omitted that I used.

In addition, you can also be specified in the second argument to the function to be called when the effect is complete.


slide up

the results 


slide down




finale code :

<?/*
dzKabyle

web2-teach.blogspot.com
*/?>
<style>
.show_div, .li-box, .show_hide{
-webkit-border-radius: 15px;
-moz-border-radius: 10px;
border-radius: 10px; 
}
.show_div{
border:solid 1px #8e8e04; 
background:#FFFFCC;
color:#222222;
padding:6px;
text-align:center;
}
.li-box{
border:solid 1px #27739d; 
background:#94d5fb 97% ;
color:#222222;
padding:6px;
text-align:center;
}
.show_hide{
border:solid 1px #90ac13; 
background:#eef4d3 ;
color:#222222;
padding:6px;
text-align:center;
}

.a {
font-size: 24px;
border:solid 1px #ba4c0e; 
background:#ffcaa4;
color:#222222;
padding:6px;
text-align:center;
}

</style>
    
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
    
    <script>
    $(document).ready(function(){
  $("#hide-box").click(function(){
        $("#li-box").slideUp(700,function(){});
    });
    $("#show-box").click(function(){
        $("#show_div").slideDown(700,function(){});
    });
   $("#toggle_box").click(function(){
        $("#toggle_div").slideToggle(700,function(){});
    });
 });
    </script>
</head>

<body>
  <span class="a"><a>Example : slide Up</a></a></span><br><br>
<span id="hide-box">Up</span><br><br>
<div id="li-box" class="li-box" >slide Up</div><br>
  <span class="a"><a>Example :slide Down</a></span></a><br><br>
<span id="show-box">Down</span><br><br>
<div id="show_div" class="show_div" style="display:none" >slide Down</div>
<br>
  <span class="a"><a>Example : Toggle</a></span><a></a><br><br>
<span id="toggle_box">Up/Down</span><br><br>
<div id="toggle_div" class="show_hide" >Up/Down</div>
<br>

 Save 50% Now on Go Daddy SSL Certificates! Only $www.1and1.com
10 Day Free Trial from TollFreeForwarding
BuyBuy





Jquery Tutoriel part 1 : Show() Hide() toggle()




-->




Jquery Tutoriel part 1

$('.myelem').show( duration [, callback] ) : it's used to show the element ("myelem").

$('.myelem').hide( duration [, callback] ):it's used to hide the element ("myelem").

$('.myelem').toggle( duration [, callback] )it's used to show and hide the element("myelem") at the same time.


callback : the function to call once the animation is done.
duration : a number determining how long the animation will run.





hide()

click hide and we see the result







Show() :  and now click show 



TollFreeForwarding.comTollFreeForwarding.com


Toggle() : finally click toggle



hide



and show again



finally the full code :

TollFreeForwarding.com


http://web2-teach.blogspot.com


<style>
.show_div, .li-box, .show_hide{
-webkit-border-radius: 15px;
-moz-border-radius: 10px;
border-radius: 10px; 
}
.show_div{
border:solid 1px #8e8e04; 
background:#FFFFCC;
color:#222222;
padding:6px;
text-align:center;
}
.li-box{
border:solid 1px #27739d; 
background:#94d5fb 97% ;
color:#222222;
padding:6px;
text-align:center;
}
.show_hide{
border:solid 1px #90ac13; 
background:#eef4d3 ;
color:#222222;
padding:6px;
text-align:center;
}

.a {
font-size: 24px;
border:solid 1px #ba4c0e; 
background:#ffcaa4;
color:#222222;
padding:6px;
text-align:center;
}

</style>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
    
    <script>
    $(document).ready(function(){
$("#hide-box").click(function(){
        $("#li-box").hide(700,function(){});
    });
    $("#show-box").click(function(){
        $("#show_div").show(700,function(){});
    });
 $("#toggle_box").click(function(){
        $("#toggle_div").toggle(700,function(){});
    });
});
    </script>
</head>

<body>
  <span class="a"><a>Example : Hide box</a></a></span><br><br>
<span id="hide-box">Hide box</span><br><br>
<div id="li-box" class="li-box" >Hide</div><br>
  <span class="a"><a>Example : Show box</a></span></a><br><br>
<span id="show-box">Show</span><br><br>
<div id="show_div" class="show_div" style="display:none" >Show</div>
<br>
  <span class="a"><a>Example : Toggle</a></span><a></a><br><br>
<span id="toggle_box">Show/Hide</span><br><br>
<div id="toggle_div" class="show_hide" >Show/Hide</div>
<br>



10 Day Free Trial from TollFreeForwarding
BuyBuy

HTML5 & CSS3 : placeholder and required attributes




Placeholder:

The placeholder attribute specifies a short hint that describes the expected value of an input field (e.g. a sample value or a short description of the expected format).
The hint is displayed in the input field when it is empty, and disappears when the field gets focus.
Note: The placeholder attribute works with the following input types: text, search, url, tel, email, and password.