Les nouveautés et Tutoriels de Votre Codeur | SEO | Création de site web | Création de logiciel

Seo Master present to you:

 How to Hide (Steganography) Files in the Photo | MP3 | Video and Email Free with free latest software

 What is the steganography?

The Steganography is defined as the art of science that the hiding information and data or the messages in any new image. There are lot of advantage of the steganography is that. Those who are outside a party and even do not realize that the some sort of a communication is being to be done.
Steganography have some function that comes in the different forms which is used the many people to hiding the information that show is below
  1. Hidden information in the Text Files
  2. Hidden information in the Image Files
  3. Hidden information in the Document Files
  4. Hidden information in the Video Files
  5. Hidden information in the Audio Files
  6. Hidden information in the E-Mails 

How to Hide the File behind an Images:

This s-tool is the steganography tool that hides the files in GIF, WAV and BMP files behind the picture. just take your any file and put on the image then give your password then send to any where . no your hidden file ready to send to any person.

How to Hide the File behind an Images:

Steganography to download the software

The Document Steganography hide you file in the document:

Merge Streams shows you that how to the merge MS Word streams and the MS Excel Workbook stream. It can hide a MS Excel document inside the MS Word document or the vice a versa. If you wish to the transparently hide some documents inside the old financial reports and this is just for you. And it does not the implement any crypto and is not to secure enough, but is very smart trick.

CLICK HERE to download the software

How to Hide the File behind Audio [Audio Steganography]

Mp3stegz is the application that applies the stenographic (steganography) algorithm that in mp3 files and this software Mp3stegz will maintain the original mp3 files size and a sound quality. Then The hidden message is compressed and then encrypted easily.

How to Hide the File behind Audio

CLICK HERE to download the software

How to Hide the File’s behind the Video (Video Steganography)

This software name is Our Secret (formerly Steganography) and lets you hide your text files or files that such as video, image, audio and others in the file. It is designed to all the files hide and send your sensitive message or files.

How to Hide the File’s behind the Video Steganography

Our secret Download to download the software

How to Send the Hidden Text in the Mail (Email Steganography)

The Spam Mimic

How to Send the Hidden Text in the Mail (Email Steganography)

The Spam Mimic to visit the website .

thanks for reading . if you like so comment below.
2013, By: Seo Master
Seo Master present to you:
This is a simple Blogger Blog Trick,Changing the color of Link when Mouse over it.7 colors are changing like animation when hover the link.
Follow the simple steps below..












If you are a beginner in HTML editing,Use our 1 Click Widget Below(Click Add to Blogger Button below)



Install Rainbow Animation Hover Effect manually.

Note:Remember that Back up your Template First.(How to Backup Template)

  • Sign In to you Blogger Account.
  • Go to Design->Edit HTML
  • Find <head> section and Place the below code inside it.

<script type='text/javascript'>
//<![CDATA[
var rate = 20;
if (document.getElementById)
window.onerror=new Function("return true")
var objActive;  // The object which event occured in
var act = 0;    // Flag during the action
var elmH = 0;   // Hue
var elmS = 128; // Saturation
var elmV = 255; // Value
var clrOrg;     // A color before the change
var TimerID;    // Timer ID
if (document.all) {
document.onmouseover = doRainbowAnchor;
document.onmouseout = stopRainbowAnchor;
}
else if (document.getElementById) {
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
document.onmouseover = Mozilla_doRainbowAnchor;
document.onmouseout = Mozilla_stopRainbowAnchor;
}
function doRainbow(obj)
{
if (act == 0) {
act = 1;
if (obj)
objActive = obj;
else
objActive = event.srcElement;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
function stopRainbow()
{
if (act) {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
function doRainbowAnchor()
{
if (act == 0) {
var obj = event.srcElement;
while (obj.tagName != 'A' && obj.tagName != 'BODY') {
obj = obj.parentElement;
if (obj.tagName == 'A' || obj.tagName == 'BODY')
break;
}
if (obj.tagName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}
function stopRainbowAnchor()
{
if (act) {
if (objActive.tagName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
function Mozilla_doRainbowAnchor(e)
{
if (act == 0) {
obj = e.target;
while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
obj = obj.parentNode;
if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
break;
}
if (obj.nodeName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = obj.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}
function Mozilla_stopRainbowAnchor(e)
{
if (act) {
if (objActive.nodeName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
function ChangeColor()
{
objActive.style.color = makeColor();
}
function makeColor()
{
// Don't you think Color Gamut to look like Rainbow?
// HSVtoRGB
if (elmS == 0) {
elmR = elmV;    elmG = elmV;    elmB = elmV;
}
else {
t1 = elmV;
t2 = (255 - elmS) * elmV / 255;
t3 = elmH % 60;
t3 = (t1 - t2) * t3 / 60;
if (elmH < 60) {
elmR = t1;  elmB = t2;  elmG = t2 + t3;
}
else if (elmH < 120) {
elmG = t1;  elmB = t2;  elmR = t1 - t3;
}
else if (elmH < 180) {
elmG = t1;  elmR = t2;  elmB = t2 + t3;
}
else if (elmH < 240) {
elmB = t1;  elmR = t2;  elmG = t1 - t3;
}
else if (elmH < 300) {
elmB = t1;  elmG = t2;  elmR = t2 + t3;
}
else if (elmH < 360) {
elmR = t1;  elmG = t2;  elmB = t1 - t3;
}
else {
elmR = 0;   elmG = 0;   elmB = 0;
}
}
elmR = Math.floor(elmR).toString(16);
elmG = Math.floor(elmG).toString(16);
elmB = Math.floor(elmB).toString(16);
if (elmR.length == 1)    elmR = "0" + elmR;
if (elmG.length == 1)    elmG = "0" + elmG;
if (elmB.length == 1)    elmB = "0" + elmB;
elmH = elmH + rate;
if (elmH >= 360)
elmH = 0;
return '#' + elmR + elmG + elmB;
}
//]]>
</script>

  • Save It and Enjoy. . . !

I think you enjoyed this post.Surely you will get excited after using this widget.
2013, By: Seo Master





DMCA adalah opsi terbaik yang bisa ditempuh untuk mengatasi artikel copy paste. Banyak blogger yang mengeluhkan duplikat konten mereka pada blog lain. Bahkan tulisan ini dibuat sebagai bentuk respon atas permintaan seorang teman blogger untuk membahas sedikit tentang duplikat konten.


Sebelumnya saya mau membahas tentang cara mengatasi penurunan trafik blog akibat faktor eksternal. Tapi
Powered by Blogger.