lundi 23 octobre 2017

How to change you'r windows os look l'île JARVIS (superman's) Os.

Switch your computer into Iron Man’s J.A.R.V.I.S

JARVIS is Iron Man’s personal assistant. With the help of a few windows utilities we can create our own JARVIS system.


Here are the essential things you will need:
  • A Computer/Laptop having Windows 7 8 or 8.1. (XP or Vista won’t work)
  • Microphone (If you don’t have one, buy it! It doesn’t cost much!)
  • Speech Recognition Setup.
    You need to understand some basic commands your computer takes to execute certain actions. If you dont know then just say “what can I say?”
  • Rainmeter Software.
    This will constitute the base of the Iron Man theme.
  • Iron Man theme pack.This is the theme and will work to make your computer look like JARVIS
  • Windows Speech Recognition Macros.
    This is a software provided by Microsoft by which you will be able to add your own commands into the system.
  • Windows 7 Boot Screen Updater. This is to update the old look of your Windows Boot Screen.
Click here to download it all!

JARVIS Software Mission – Step 1: Set up Windows Speech Recognition

This is the very basic step of what we’re going to do. You have to configure Windows Speech Recognition so that you can execute the basic commands by speaking.
Windows Speech Recognition will guide you through the commands and in the meantime, also train your computer to understand your voice better. So, after you take the tutorial, you will notice that your system understands your commands better than anyone else’s. Awesome, isn’t it?
I gave the link to the tutorial before itself. Make sure that you read it, and take time learning the basics. The more you accustom yourself to the commands, the better you can command your system.
It took me almost half an hour to complete this step on my desktop, but it was well worth it, because all the basic commands can be executed by me just by speaking!

Step 2: Installing Windows Speech Recognition Macros

You now know all the basic commands and now can control your computer with your voice. Use it and get more and more familiar with it.Remember that, whenever you are stuck, you can say “What can I say?” and your system will show up the list of the commands and their consequences.
Now we have to install the Windows Speech Recognition Macros.
The installation file is found in the files you recently downloaded. Install Windows Speech Recognition Macros using that setup file.
Iron Man JARVIS Software - WSR Macros
You just have to click on the “Install” button and your software will be ready!
Now, open Windows Speech Recognition Macros and you will soon find the icon in the Notification Area of the taskbar.
Iron Man JARVIS Software - WSR Icon
Right click on that icon and you will receive some options. Click on “New speech macro”.
Now here you have a variety of options. Basically, Windows Speech Recognition is meant to create your own commands with specific actions. We can’t be satisfied with the basic functions only right?

Iron Man JARVIS Software - WSR New Speech Macro
Here are the alternatives you have, explained in brief:
Insert Text: Suppose if you use Microsoft Word through Speech Recognition and don’t want to type your address again, you can set a specific phrase for your address and whenever you say that phrase, your address would by typed automatically.
Run a Program: There are default commands such as “Start WordPad” and “Start Notepad” for WordPad and Notepad respectively. There are commands for some other programs too! But what about the rest? This option can allow you to execute any program, maybe your favourite game by just speaking!
Send Keystrokes: Take a situation where you want to select all the text and copy it into the clipboard. Can you do it by just speaking? Oh yes, why not? This option allows you to add phrases for different keystrokes such as Ctrl+A and Ctrl+C!
Emulate Recognition: This is for the commands already supported by Windows Vista Speech Recognition.


Advanced: There are certain complex commands that we would like our JARVIS to do. However, this requires brief knowledge of XML. I have explained some of the commands you can use below:


(Note that the commands are listed in the order in which they are supposed to be used)
<speechMacros> – This is just a starting tag. This indicates that the code is actually for Windows Speech Recognition Macros.<command> – This, in short words, is the command to be executed. Sometimes your demands are fulfilled with just a single command. However, in some cases you would need more than one command too!
<listenFor></listenFor> – Whatever you are going to speak is supposed to be written between these two tags. Don’t forget the close tag else your code will not work.
<speak></speak> These tags should include the text your system is supposed to speak after listening to your command.
</command> – This is the closing tage of <command> tag. XML is like HTML. It has both opening and closing tags for every element, with a few exceptions.
</speechMacros> – This is the closing tag of <speechMacros>!
Now, I will show you some examples to explain it better.
But before that, I want to tell you that it is extremely important to digitally sign your macros! So before creating every single macro, you have to create a signing certificate! Every macro will need one certificate.
For creating a signing certificate, right click the Windows Speech Recognition icon in the notification pane, then go to Security, then press “Create Signing Certificate”.
Suppose if you want your computer to greet you when you command it to wake up, you can use the below Macros:
<speechMacros>
<command>
<listenFor>Wake Up Jarvis</listenFor>
<speak>Systems Online, Database Check, Good Morning Sir !</speak>
</command>
</speechMacros>
I love this one the most!
Here is a Macro for getting the weather. You can see that it’s a bit complicated to understand. But no worries! You just have to copy this macro and replace the text in bold with the desired details.
<?xml version=”1.0″ encoding=”UTF-16″?>
<speechMacros>
<command>
<listenFor>Pull up the weather in [CityName]</listenFor>
<run command=”http://www.weather.com/weather/local/{[CityName.zipCode]}”/>
</command>
<command>
<listenFor>Is it cold in [CityName]?</listenFor>
<speak>Let me check… just a moment.</speak>


</command>
<listenForList name=”CityName” propname=”zipCode”>
<item propval=”65201″>Columbia</item>
<item propval=”37201″>Nashville</item>
</listenForList>
</speechMacros>
Woah! What a lengthy piece of code. If you aren’t much into this coding stuff, I would suggest you to leave the above macro.
This is a Macro for restarting your computer. Simply say “Restart JARVIS” and your system will restart!
<speechMacros>
<command>
<listenFor>Restart JARVIS</listenFor>
<speak>Rebooting The System. See you shortly, Sir!</speak>
<run command=”C:WindowsSystem32shutdown.exe” params=”-r -t 00″/>
</command>
</speechMacros>
Here is a Macro for shutting down your system. Say “Goodbye JARVIS” and your system will shut down!
<speechMacros>
<command>
<listenFor>Goodbye JARVIS!</listenFor>
<speak>Getting offline, good bye Sir</speak>
<run command=”C:WindowsSystem32shutdown.exe” params=”-s -t 00″/>
</command>
</speechMacros>
If you want your system to tell you the time, use this macro:
<?xml version=”1.0″ encoding=”UTF-16″?>
<speechMacros>
<command>
<listenFor>What’s the time, Jarvis?</listenFor>
dim currentTime
currentTime = FormatDateTime(Time(), 1)
Application.Speak Time
Application.SetTextFeedback Time
]]>
</command>
</speechMacros>
Likewise, if you want your system to tell you the date, use the below macro:
?xml version=”1.0″ encoding=”UTF-16″?>
<speechMacros>
<command>
<listenFor>What’s the date, Jarvis?</listenFor>
dim todaysDate
todaysDate = Date
Application.Speak Date
Application.SetTextFeedback Date
]]>
</command>
</speechMacros>
Suppose you have just opened a file or a folder and you want to delete it, simply use the below macro:
<?xml version=”1.0″ encoding=”UTF-16″?>
<speechMacros>
<command>
<listenFor>Delete it!</listenFor>
<sendKeys>{DELETE}</sendKeys>
<speak> File has been Deleted, Sir </speak>
</command>
</speechMacros>
The last one! Want to empty your recycle bin? The below macro is to the rescue:
 <?xml version=”1.0″ encoding=”UTF-16″?>
<speechMacros>
<command>
<listenFor>Empty the Recycle Bin</listenFor>
<run command=”C:nirnircmd.exe” params=”emptybin” />
<speak> Done, Sir </speak>
</command>
</speechMacros>
Did I horrify you with too many codes! Note that NONE OF THE CODES GIVEN HERE ARE MANDATORY and you can always skip or modify any piece of code! After all, your system, your rules!

Step 3: Installing Jarvis Theme

You’re very near! You just have to install these – Rainmeter and Iron Man Theme, both of which are provided in the files.Rainmeter will do the job of supporting your theme and providing it with a base.
Now, change your desktop background (Wallpaper) to the image provided in the files or download your own.
You now have to load the theme skins. You have four colors to choose from – Blue, Green, Red and Yellow. While I like blue, it’s completely up to you for which to choose!
Simply load the skins of the color you have chosen. Click on the skin and press “Load” button. This is shown in the image given below:
Iron Man JARVIS Software - Loading the theme skins
You will notice that all the elements will be found at just one place. Rearrange them the way you like and Voila! Your system really looks like JARVIS now!
But hold on! Your desktop icons are still visible and that ruin the look. There’s a solution for that too!
Simple, right click on your desktop, hover to view, then uncheck “Show desktop icons” option.
Look at the below image for reference:
Iron Man JARVIS Software - Hiding desktop icons
This is how my screen looks like now:
Iron Man JARVIS Software - Hiding desktop icons
You can add more widgets to improve the look and creating your own unique JARVIS style.
 In case you need assistance  joint us at +237680087660. Or just send us an e-mail.

How to Doctrace as a pro or réal hacker.

How to Dox/Trace like a pro.

Firstly what is doxing? Doxing is a technique used to track, trace, and collect information on individuals or organizations online anonymously.

So your question is how will we dox like a pro? To be honest it’s quite easy. I’ll show you 2 ways on how to dox like a pro. The first method will concentrate on online searching and the second one , well , is a GUI tool that will make doxing incredibly easy.

Method 1

Skills you will need.
  • Social Engineering
  • Notepad
  • An anonymous email
Here’s a basic form for all of the stuff you should find to make the person’s dox usable:
—————————————————————————————————————————-
Username/s/:
E-mail:
City:
Zip/Postal:
State/Province:
Country:
IP address:
ISP:
Operating System:
Home Address:
Phone number:
Cell Phone number:
Website:
———————————————————————————————————————

How to obtain an IP address from your victim.

I’d suggest going tohttp://whatstheirip.com
On this website, you enter your e-mail, and you get a set of links. Pick any link, copy and paste, and give the link to your victim saying something similar to this “LOL THIS IS HILARIOUS” or “HERE’S A NAKED PICTURE OF YOU” (get creative). Once clicked, the IP will be sent to your e-mail. This is where it is good to us that anonymous email you just setup. Getting this link to them can be achieved many different ways for the most part if I have the victims phone number I send them a text that looks like it’s from their cell service provider. Sometimes asking them to click on the link to confirm a setting on a account or notifying them that they have an outstanding balance on their account.
If your target has e-mailed you, you can get the IP from looking at the e-mail source. To look at the e-mail source for windows desktop users, right click on the message, and click ‘View Message Source’ or ‘Show Original’. When you’re looking at the source, look for this: ‘Received: by’ It will show you an IP address. This is the IP address of your target.
Once you have the IP address of your target, go to http://ipaddress.comand enter the IP of your victim. You now have the location, zip code, state, country, ISP, and operating system.
Once you’ve collected all the information, your next step is to find more information on social networking sites.Using their email on all of these sites in the search engine will lead to the victim. The least amount of information you can gather is their name , that is if they have their security properly configured. Another way to search on which social sites the victim are , is by going to google search and type in his/her name,username or email + insert a @ after it. This will pull up any posts online by this person if there are any.
If your victim has photos online, save the photo and go to a website namedhttp://tineye.com. On this website, upload the picture of your victim. When it is finished, you can find if this photo is uploaded on any other websites. You can also find out if the photo is fake.
If your victim has a website, put the website in http://who.is. If the website owner does not use WHOIS Guard Protect, you can find out all information about him (name, phone, address, etc.)
Then there’s people searches which for me is one of the must have, if you decide to dox professionally and you miraculously live in the US /:)/. It’s quick , easy and provides the information in seconds. Most of these sites come with a hefty fee for more information (almost everything) and can give you a reverse look-up on a name , email , phone , username or address. Here’s a few sites which you can have a look at or if you want to buy the premium account.
In case you need assistance or any inquiries. Call me at  +237680087660 or send us an email.
Hope you enjoy..