Skip to main content

All you need to know about Monero (cryptocurrency)

Monero is a cryptocurrency introduced in April 2014 which focuses on fungibility and decentralization. Monero uses an obfuscated public ledger, meaning anybody can broadcast or send transactions, but no outside observer can tell the source, amount or destination. Monero uses a Proof of Work mechanism to issue new coins and incentivize miners to secure the network and validate transactions. Monero is based on the CryptoNight proof-of-work hash algorithm, which comes from the CryptoNote protocol. It possesses significant algorithmic differences relating to blockchain obfuscation. It's one of the trending coin's currently. You can mine as well as buy from many sites. So today i going to share about mining of monero currency. For this i will be using popular site i.e Coinhive by the help of this site you can mine as well as monitor your progress.

Step 1:- Create an account on Coinhive
Step 2:- After completion of all verification you will be redirected to home page of coin page where you will see this
Taken from Coinhive
 There you will see a small box where it will say start mining and by clicking on it your mining will begin.
Choose threads option well as choosing more threads might slow your device so on the basis of your device configuration choose threads. HASHES/S shows your hash speed and TOTAL shows the total hashes captured or accepted.
or
You can also try mining from menu Coinhive Mining Tool when clicked or browsed you will see something like this

Taken from Coinhive

There you will see Sites option there you will see your site name and at the end of that row you will see open option when you will click on it you will be redirected to site of authedmine which would be something like this

https://authedmine.com/media/miner.html?key=CzQERpPtdLh2x4pHdgJyFHiTv4EaYBTq

or

https://authedmine.com/media/miner.html?key='Your_Site_Public_Key'

Just replace 'Your_Site_Public_Key'  with your public key and You can mine Monero anytime from anywhere by using the link from any device. See it's very easy to have them.

You can see your public key or private key(never tell any one keep it secret) or change the name or add the new site from Settings options which would be something like below image and you will find it under Sites & API Keys

Taken from Coinhive

You can browse other settings also as well as set payment wallet from here. You can see minimum payout also from here.

For mining from mobile devices you can try above methods as they work quite well.

NOTE:- You can implement it in your website also for that refer Documentation page on Coinhive. It's only possible if you have some basic website building knowledge. Don't worry if you have any problems feel free to comment or contact me.

You are good to go now. Go and Mine and Enjoy.

Comments

Popular posts from this blog

Google Dorks list

Google Dorks are used for searching websites in google search engine or in CLI. It can also help you in hacking as it shows the specific results which contains your search strings. Some of the Google Dorks are given below I tried to include all of them and sorry if any duplicacy. You can download or view this from  here about.php?cartID= accinfo.php?cartId= acclogin.php?cartID= add.php?bookid= add_cart.php?num= addcart.php? addItem.php add-to-cart.php?ID= addToCart.php?idProduct= addtomylist.php?ProdId= adminEditProductFields.php?intProdID= advSearch_h.php?idCategory= affiliate.php?ID= affiliate-agreement.cfm?storeid= affiliates.php?id= ancillary.php?ID= archive.php?id= article.php?id= phpx?PageID basket.php?id= Book.php?bookID= book_list.php?bookid= book_view.php?bookid= BookDetails.php?ID= browse.php?catid= browse_item_details.php Browse_Item_Details.php?Store_Id= buy.php? buy.php?bookid= bycategory.php?id= cardinfo.php?card= cart.php?action= ...

Hack SQL vulnerable websites with sqlmap

As the web is expanding day by day same way the hackers are also gaining new ways to access the data of your or any random website all you need to do is few lines of code and you are all done. Today i will tell you most common way to hack a website without any restrictions all you need is a vulnerable site and you are all done. NOTE: This is for educational purpose only. I am not responsible for anything. Try at your own risk. SQLMAP is availabe in linux and mac OS. If not you can install it via apt and other possible ways. syntax > sqlmap / [ ,options/ ] First of all make your device ready for hacking that is by installing necessary software's and files like Tor , Orbot  (Android),  Orfox (Android) or any other tor supported browser. And don't use it for your personal works. And if possible use VM's for hacking to make it more anonymous. Run tor or orbot and connect via VPN to be anonymous (i.e to hide and secure yourself). then you can open terminal on...

Python Code for Trading Indicators

Hi Everyone, I am back with some random things again. So today i will share codes of popular trading indicators which you can use while creating your own trader with machine learning in python. so at first you need to import the below libraries import numpy as np import pandas as pd from pandas_datareader import data as web import matplotlib.pyplot as plt then after the above step is done then you need to assign few of the local variables you can also take them as input as per your requirement stock_name="SBI" #for nifty: ^NSEI n = 20 #window size start_date = "2021-04-01" end_date = "2021-06-03" then after it is done you need to create a function which can be used to extract the data from the yahoo finance and for that the code is provided below def getData():     stock_data = web.DataReader(stock_name, start=start_date, end=end_date, data_source='yahoo')     stock_df=pd.DataFrame(stock_data)     return stock_df The above code will return da...