Sunday 22 December 2013

[eMo]Web Browser Optimizer


[eMo]Web Browser Optimizer is a free software that provide means for memory optimization of browsers. It’s a handy and lightweight tool that lets you quickly and easily optimize memory for the chosen browser. [eMo]Web Browser Optimizer supports all major browsers including Google Chrome, Internet Explorer, Mozilla Firefox, Opera Mini, Safari, GreenBrowser, Maxthon, Pale Moon etc.

Tutorial


Key Features of [eMo]Web Browser Optimizer :
  • Free memory optimization tool for browsers.
  • Works with all major browsers.
  • Also supports some less-popular browsers like Flock, Netscape, Avant Browser etc.
  • Adjustable optimization time.
  • Minimize to system tray.
  • Run on startup.
  • Simple interface.
  • Lightweight and handy.
  • Easy to use.
  • Save setting browsers.
  • Add Manual Others Browser. - New
VirusTotal

[eMo]Web Browser Optimizer

Thursday 7 November 2013

[Internet Download Manager] IDM Optimizer


With less than 650KB, an impressive GUI and responsive user interaction, com0do99+ Softwares presents the freeware [Internet Download Manager] IDM Optimizer.
This Application was made to be the simplest and functional application to make.

Here is some features of this application:
  • Optimizing Type/Speed Connection
  • Optimizing Max Connection
  • Proxy Settings
  • 100% written in .NET to avoid false positives problems.
  • Smooth GUI with nice animations.

The software compatibility:

- Windows XP or higher with .NET Framework 2.0 installed.



About IDM Optimizer Maker:

- Custom build licensed to com0do99+.
- Internal engine developed by Denmas.Arhyf.
- Graphic design built by Denmas.Arhyf.


[Internet Download Manager] IDM Optimizer

How to Detect Listen port Bitvise Ssh Client

Hi, finally i'm back to share posting "How to Detect Listen port Bitvise Ssh Client".

Why I'm share this posting?
Because i'm always use Bitvise to access my VPS on desktop, and i has build application that used Bitvise SSH. Then i have problem how to detect listen port of my bitvise profile is connected or not. I'm already looking on google how to that, but at the end I can not found it. So I have an idea with used third party application, that's "Paping".
What is Paping
Paping (pronounced pah ping) is a computer network administration utility used to test the reachability of a host on an Internet Protocol (TCP/IP) network and to measure the time it takes to connect to a specified port.

Syntax: paping [options] destination
Options:
  • -?, --help
  • -p, --port N
  •  -t, --timeout
  • -c, --count N
Bitvise services socks is TCP/IP listen interface, so that why i use paping command.
SSH port forwarding https://www.bitvise.com/port-forwarding


As you can see my SSH port forwarding is listen on 127.0.0.1 port 1081, below is the log if my SSH server success connected.
Question is how to automation my ssh with other application.
Oke let's begin, you must read our current article :
Our Application :
After that open our project "RedirectStandardOutput-Paping" , do some modified in Method OutputHandler 
I will send command paping to ping localhost/127.0.0.1 with port 1081
Command : 127.0.0.1 -p 1081

public void OutputHandler(object sendingProcess, DataReceivedEventArgs outLine)
        {
            SetText(outLine.Data);
//Add if conditional
if(outLine.Data.Contains("Connected")) MessageNox.Show("Your SSH Connected");
else(outLine.Data.Contains("Connection timed out")) MessageNox.Show("Your SSH Disconnected");
        }

Finally , rebuild your project.
Thank You