Skip to main content

Posts

Showing posts from August, 2017

how to upgrade/update specific applications in linux

hello linux Userzz today i am going to show you steps for upgrade specific applications  LETS GO!!!! 1>To only u pgrade specific applications YOU CAN USE THESE  COMMAND  sudo apt-get --only-upgrade install "APPLICATIONS NAME"      OR sudo apt-get dist-upgrade "APPLICATIONS NAME"   OR       sudo apt-get upgrade "APPLICATIONS NAME" EXAMPLE:--  FIREFOX UPGRADE DEMO -   sudo apt-get dist-upgrade firefox OR     sudo apt-get upgrade firefox  OR sudo apt-get --only-upgrade install firefox 2> METASPLOIT UPGRADE EXAMPLE sudo apt-get --only-upgrade install metasploit-framework more information for searching specific application name use this command apt search "application name what ever you know" example - i want to find corrent application name of metasploit so used this command apt search metasploit and in result in found  " metasploit-framework "

FATRAT - [x]::[warning]:this script require mingw32 or 64 installed to work

fix for fatrat[x]::[warning]:this script require mingw32 or 64 installed to work  Checking type of shell .... [local]  [ * ] Checking for internet connection  [ ✔ ]::[Internet Connection]: CONNECTED!  [ ✔ ] Xterm.............................[ found ]  [ ✔ ] Dns-Utils ........................[ found ]  [ ✔ ] Gcc compiler......................[ found ]  [ ✔ ] Apache2 ..........................[ found ]  [ ✔ ] Gnome Terminal....................[ found ]  [ ✔ ] UPX Compressor....................[ found ]  [ ✔ ] Ruby..............................[ found ]  [ ✔ ] Openssl...........................[ found ]  [ ! ] Installing tools dependencies  [ ✔ ] Monodevelop ......................[ found ]  [ ✔ ] Jarsigner (java)..................[ found ]  [ ✔ ] Unzip.............................[ found ]  [ ✔ ] Keytool (java)....................[ found ]  [ ✔ ] Zipalign  [ ✔ ] Proguard  [ X ] Mingw-w64 -> not found  [ ✔ ] DX 1.8  [ ✔ ] Aapt v0.2-3821160  [ ✔ ] Apktool v.2.2.2 fix---- apt-g

How To Download Instagram Videos/Photos to Computer

Download Instagram Videos to Computer/PC Log in to your Instagram Account using any web browser like Google Chrome, Mozilla Firefox etc. Get the URL of your video by clicking   and by pressing  View Video page . Right-click on the video and Select “Inspect Element”. You will see a link in a <div> tag after src , click it. Now your video will start playing in a new tab. Then right click anywhere on the screen and select Save Video As Your video will now start downloading. You’re done Download Instagram Videos to Computer Easily Follow first 3 steps from the above procedure and open dredown website . Paste the copied URL in the text box provided Press Dredown! You’re done.

Subtitle-to-speech program

Subtitle-to-speech program A program to turn movie subtitles (SRT) to speech using the Windows narrator other formate to convert srt from these site (example .ass to srt)  https://subtitletools.com/convert-to-srt https://lab.sorz.org/tools/asstosrt/ In order to rid myself of the subconscious addiction to western cinema, I started watching a lot of movies from other countries, especially Asian countries.   Most of these films have subtitles submitted by fans - way much cooler than voice-overs. The problem I have with reading subtitles while in bed stems from the fact that I wear glasses... I am a programmer so I decided to tackle the issue of subtitles-to-speech once and for all. What luck, Vista has a better voice for the narrator! 1. The subtitle-to-speech window 2. Click the Play or Browse-for-Folder button to specify the location of the subtitle file (Subrip only) 3. Locate the subtitle file... 4. If a video has been found (AVI) matching the subtitle file, you will be a

phishing attack from linux with 3g/4g mobile internet hotspot on wan

Setup Online to local machine Forwarding for SET Social Engineering Toolkit in Kali Linux You will follow the given steps to setup  forwarding. Go on ngrok.com and click on Sign Up Fill your detail and register. Download ngrok zip file, choose appropriate architecture as per your system (64bit/32bit). otherwise you will face problem. Extract the files Run terminal and reach at location you have extracted ngrok file. After sign up on ngrok.com you will get two commands written there. Execute both commands in sequence. Start SET Social Engineering toolkit Select 1 > 2 > 3 > 2 options after starting toolkit and hit enter after pressing each key. It will ask for IP Address, Copy forwarding link generated by ngrok and paste here. Give the website name you want to create phishing page. (ex - www.facebook.com , www.gmail.com) Send link to victim and wait for logging him/her After Login I hope you like this article if you have any question comment in

how to use mobile network hotspot wan for website in linux / install ngrok / portword with mobile hotspot

Share Your Local Web Server Publicly using ngrok  how to portword with linux mobile 3g 4g internet without router share you your website As a web developer, my workflow often includes writing a little code, firing up a local web server, and doing a quick smoke test to make sure things look alright. Occasionally, I'll encounter a situation where I'll need someone else (coworker, client, etc.) to provide some feedback on a design decision before moving forward. If I'm in the office, it's easy. I'll just call them over to take a look. However, there are times when I need to share my local changes with someone remotely and get feedback quickly . If the change is relatively minor, deploying to some staging environment might be overkill. How can I expose my local web server publicly so my clients can view my changes and provide immediate feedback ? What is ngrok? ngrok is a reverse proxy that creates a secure tunnel from a public endpoint to a

how to create wishing page from linux

if you want to remove rockstardevil from website than paytm me 10 dollar !!!! contact detail - instagram rockstardevil34 For this Web App, you Need to create a Four Files 1 - index.php 2 - userwish.php 3 - db.php 4 - .htaccess First Create a Database on your Webserver After creating the Database run this SQL Query to create Tables for the Web App CREATE TABLE event_wishes ( id INT NOT NULL AUTO_INCREMENT, title VARCHAR (500) NOT NULL UNIQUE, str VARCHAR (500) NOT NULL UNIQUE, PRIMARY KEY (ID) ); 27 After creating Database Tables create Three files index.php - Homepage userwish.php - Greeting Page db.php - For MYSQL Database Connection Now Add this Below code on db.php File <?php $dbhost = 'localhost' ; $dbuser = 'YOUR DB USER' ; $dbpass = 'YOUR DB PASS' ; $dbname = 'YOUR DB NAME' ; $con=mysqli_connect($dbhost, $dbuser, $dbpass,$dbname) //connect to the database server