Wednesday, October 21, 2015

Microsoft Debuts Its First Release of Homemade SSH for Windows



Working to fulfill its promise, Microsoft has released the first build of the Windows Powershell version of SSH tool. The code has been made publicly available on GitHub where developers can modify and improve it.

Long back in June, Microsoft revealed its intentions to bring SSH for Windows and contributing to the OpenSSH community. Working towards making it a reality, Redmond has released the first iteration of the Windows Powershell version of secure-shell (SSH) tool.
By integrating the OpenSSH support into the Windows PowerShell tool, Microsoft will allow system admins to securely log into the Windows boxes and control them using command line scripts just like Linux, BSD and other Unix-type systems. Linus Torvalds, are you listening?

On its blog, Microsoft has released an early work on a Windows port of OpenSSH 7.1. This is built as a joint effort with remote-access developer NoMachine. You can access the public code here on GitHub.
“The NoMachine port was based on OpenSSH 5.9, so we’ve spent the time since our initial announcement working with NoMachine to bring this port in sync with OpenSSH 7.1,” Microsoft writes.
Redmond aims to make this open to contributions into the portable version of OpenSSH. The OpenSSH 7.1 is the first step (total five steps) that will lead up to the production release of OpenSSH in Windows.
It’s expected that within the first half of next year, Microsoft will deliver the complete production build.

What do you think about the SSH for Windows? Tell us in the comments below.

Tuesday, September 15, 2015

Text Edit

Text Edit is very simple Text editor with few functions only bt written in pure html css jquery
Released under MIT License

 Check out Now

Monday, September 14, 2015

Microsoft Toolkit 2.6 BETA 1



Microsoft Toolkit
Microsoft Toolkit is a set of tools and functions for managing licensing, deploying, and activating Microsoft Office and Windows. All output from these functions is displayed in the Information Console. All functions are run in the background and the GUI is disabled to prevent running multiple functions, as they could conflict or cause damage if run concurrently. The Microsoft Office Setup Customization Functions (Customize Setup Tab), AutoKMS Uninstaller (if AutoKMS is installed), AutoRearm Uninstaller (if AutoRearm is installed), Office Uninstaller and Product Key Checker work even if Microsoft Office or Windows is not installed/supported.
Features of Microsoft Toolkit
  • Supports Microsoft Office 2010 or Later for Office Toolkit
  • Supports Windows Vista or Later for Windows Toolkit
  • Added DLL Injection LocalHost Bypass Method
  • Create and Delete IP Routes with Win32 API instead of command line
  • No longer require SFX EXE files to Remove or Restart TAP Adapter
  • Prevented exception when LocalHost Bypass IP in in use when using TAP Adapter Bypass
  • Retry up to 10 times if using LocalHost Bypass and you get 0xC004F074 error
  • Set DHCP and Static IP addresses on TAP Adapters using WMI instead of command line -Warning if more than 1 TAP Adapter is installed before Activation
What’s New ?
  • Office 2016 Support (WARNING: Preliminary – Assumed to work, but may fail if unexpected changes/assumptions about Office install are introduced by Office 2016 RTM).
  • Windows 10 Support.
  • Added Licensing State message “Store License”. Occurs when getting the free permanent Windows 10 Upgrade.
  • Disable KMS Online Ticket Validation (Windows 8.1+) when activating
  • Disable Windows Vista Rearm Count (OS doesn’t support it)
  • Fixed Backup of Windows Vista due to lack of cache.dat
  • Fixed KMS Server Service crash on XP due to corrupt HWID
  • Improved TAP Drivers
  • Improved WinDivert Uninstall
  • Remove Trial and Grace Keys when using EZ-Activator.
  • Support for KMS PID with 5 Digit Build Number (EX: 10240).
How to use Microsoft Toolkit?
Download the latest microsoft toolkit; extract it and run when required (no need to install it)

Friday, September 11, 2015

What is programming?

Today I M Posting Video About What Is Programming From Lynda.com
Enjoy !!


Whatsapp web for PC - वेब ब्राउज़र (पीसी पर) में Whatsapp

Whatsapp web हिंदी मे WhatsApp Video shows How to run whatsapp without bluestacks on pc, Scan Whatsapp Web QR code and Run Whatsapp on PC in Windows 7, Windows 8, Windows XP, Windows 10, Linux, in Google Chrome without Bluestacks

KEEP YOUR SPEAKER ON


I Hope U Enjoy

Tuesday, September 1, 2015

Amitabh Bachchan’s Twitter Account Hacked, Adult Site Added as ‘Following’





Atweet from Mr. Bachchan’s official Twitter handler @SrBachhan says: “WHOA !..My Twitter handle hacked ! Sex sites planted as ‘following’ ! Whoever did this, try someone else, buddy, I don’t need this !”
According to Mr. Bachchan, hackers added some sex sites in his “following” list. This means that some person other than him accessed Bollywood superstar’s account and added these adult websites.

It should be noted that Mr. Bachhan has the highest number of Twitter followers in India, followed by actor Shah Rukh Khan, Indian PM Narendra Modi and superstar Salman Khan.

However, it isn’t always necessary for an account to be hacked into if it has some random followers. It could also happen due to the apps that have access to the Twitter accounts.
We scanned his current list of 984 followers and currently Mr. Bachchan has unfollowed those adult sites. fossBytes advises you to stay safe on the web and use social media with great care.
Share your opinions in the comments below.

Monday, August 17, 2015

How to Build a Basic Web Crawler in Python

Web crawler is a program that browses the Internet (World Wide Web) in a predetermined, configurable and automated manner and performs given action on crawled content. Search engines like Google and Yahoo use spidering as a means of providing up-to-date data.




webhose.io a company which provides direct access to live data from hundreds of thousands of forums, news and blogs, on Aug 12, 2015, posted the articles describing a tiny, multi-threaded web crawler written in python. This python web crawler is capable of crawling the entire web for you. Ran Geva, the author of this tiny python web crawler says that:
I wrote as “Dirty”, “Iffy”, “Bad”, “Not very good”. I say, it gets the job done and downloads thousands of pages from multiple pages in a matter of hours. No setup is required, no external imports, just run the following python code with a seed site and sit back (or go do something else because it could take a few hours, or days depending on how much data you need).

The python based multi-threaded crawler is pretty simple and very fast. It is capable of detecting and eliminating duplicate links and saving both source and link which can later be used in finding inbound and outbound links for calculating page rank. It is completely free and the code is listed below:
Save the above code with some name lets say “myPythonCrawler.py”. To start crawling any website just type:

Sit back and enjoy this web crawler in python. It will download the entire site for you.