A MiniPwner is a penetration testing drop box which can provide some interesting capabilities if you're able to insert one into a target's network. It is a small device and with the MR3040 in particular, it contains a battery which means you don't have to worry about power for at least a few hours. Because it runs OpenWRT there are a variety of infosec friendly packages which can facilitate things such as reverse SSH or VPN tunneling, port scanning with nmap, and while it may not have the horsepower to run Metasploit you can certainly use a MiniPwner as a conduit to forward traffic from a Metasploit install elsewhere. The tutorial that follows is more or less what is described on their website, but some steps are glossed over which I cover here so hopefully this helps fill in the gaps for people that may not be comfortable fiddling with embedded devices.
First take a USB drive (the tutorial suggests a 16gb USB stick, but I'm using 8gb in this tutorial) and format it such that the first partition is a 500mb swap and the remaining partition is ext4. I did this in Kali and the utility gparted. Here is a screenshot of what gparted looked like.
Next, download the OpenWRT firmware that is appropriate for the MR-3040 here.
Using the ethernet cable plug the MR3040 into a computer. Authenticate to the router by navigating to 192.168.0.1 and use admin/admin as the credentials.
Navigate to the Firmware Upgrade endpoint by clicking on System Tools on the left hand side to expand those options. Then click on Firmware Upgrade.
Click on the Choose File button and select the openwrt-ar71xx-generic-tl-mr3040-v2-squashfs-factory.bin file you downloaded earlier.
Click Upgrade. A confirmation dialog will appear and the MR3040 will proceed to be flashed with OpenWRT.
After the flashing process finishes, the MR3040 will reboot. After flashing the MR3040, the default IP address gets updated to 192.168.1.1 instead of 192.168.0.1. Access the newly flashed MR3040 by pointing your browser to 192.168.1.1. You may have to disconnect your host computer from your home Internet connection while this happens since 192.168.1.0/24 is a common network for home routers.
After pointing your browser to 192.168.1.1 you can authenticate to the MR3040 with a username of root and a blank password.
The next task will be to install packages the will enable the MR3040 to interface with the USB drive. In order to do that we will need to get Internet access for the MR3040. In this case, I used the MR3040 to connect to my home wifi network. To do this I clicked on Network and then Wifi. Then I clicked on Scan to have the MR3040 identify my home wifi network.
After the scan identified my home wifi network, I clicked on Join Network. The next screen asks for the passphrase, allows you to set a network name, and configure firewall rules. I left the network name as the default wwan, and the firewall rules to wan which was empty for me. Another screen comes after this which confirms all of the details and I clicked on Save & Apply.
Next, open a terminal and telnet into the MR3040. You should not have to supply credentials at this point.
Confirm that you have Internet access by pinging 8.8.8.8. DNS is not working properly at this point though, so we'll need to update the network configuration for the br-lan interface. Configure the /etc/config/network file and add the line, option dns '8.8.8.8' to the entry for the lan interface. It should look like this:
Reboot the MR3040 by typing reboot -f and when it comes back up telnet back in and attempt to ping a domain name. It should work this time. Now we should be able to update the MR3040 appropriately. From your telnet session, type opkg update to update the list of packages that can be installed. Now we'll install all of the packages for USB by typing: opkg install kmod-scsi-core kmod-usb-storage block-mount kmod-lib-crc16 kmod-crypto-hash kmod-fs-ext4
Insert the USB stick in to the 3G port and reboot by typing, reboot -f from the telnet session. Telnet back into the MR3040. Our next task is to get the MR3040 to recognize the USB drive. We'll do this by modifying the /etc/config/fstab file. First make a backup of the file and then proceed to edit fstab until it resembles this:
Then copy the contents of the flash memory on the MR3040 onto the USB drive with the following commands:
mkdir -p /tmp/cproot
mount --bind / /tmp/cproot
mkdir /mnt/sda2
mount /dev/sda2 /mnt/sda2/
tar -C /tmp/cproot -cvf - . | tar -C /mnt/sda2 -xf -
umount /tmp/cproot
Then update /etc/config/fstab so that the MR3040 will use the USB drive as the root folder. Update /etc/config/fstab so it resembles this:
Reboot the MR3040 by typing reboot -f again. Now we will verify that the MR3040 is identifying the USB drive correctly by typing, df -h, to look at the disk space usage. You should see that /dev/sda2 is there and has gigabytes of space available.
Now we will install the MiniPwner overlay. Change directory into /tmp and download the overlay with this command, wget http://minipwner.com/images/Overlay/minipwner-overlay_2.0.0.tar.
Extract it with this command, tar -xvf minipwner-overlay_2.0.0.tar. It appears that the setup.sh that got archived in this tar was edited using Windows style line endings. Edit the setup.sh file and manually delete the dos line ending ^M characters at the end of each line. I attempted to set the file format to be unix, using :set ff=unix, but was unsuccessful. Save setup.sh and execute it with, sh setup.sh. Flip the 3-way switch to be WISP and reboot.
Telnet back in and you should be welcomed with a MiniPwner banner instead.
Now we will go through the process of installing security related packages. Type, opkg update, to update the list of packages the MR3040 is aware of. Next install the packages with the following commands (I ran into a character limit on the terminal so I had to split it up into two commands):
opkg install libpcap libstdcpp libpthread zlib libopenssl libbz2 bzip2 terminfo libnet1 libpcre libltdl libncurses librt libruby wireless-tools hostapd-common-old kmod-madwifi ruby uclibcxx libnl libcap libreadline libdnet libdaq libuuid libffi python-mini openssl-util kmod-tun liblzo libevent2-core libevent2-extra libevent2-openssl libevent2-pthreads libevent2 aircrack-ng elinks ettercap karma kismet-client kismet-drone kismet-server netcat nmap openvpn-easy-rsa openvpn-openssl perl samba36-client
opkg install samba36-server snort tar tcpdump tmux yafc wget python vim unzip
If you want to install any other packages at a later date, be sure to run, opkg update, before attempting to opkg install your desired package.
Finally, don't forget to run the passwd command to set a password, disable telnet, and enable SSH. The next time you try to remote into your device you will have to use SSH to access it.
Great Guide thanks...
ReplyDeletebut I'm stuck when rebooting after the second time editing the fstab file. When my mr3040 reboots I can't connect to it via telnet, ssh or the web gui.
Thanks again and any advice on where I'm stuck?
Thank you for your guide, it was epic and filled in the gaps that the main guide on the minipwner website left out. An IMPORTANT NOTE for noobs using gparted for the first time, MAKE SURE YOU ACTUALLY PARTITION YOUR USB prior to going ahead with anything. I had set the partitions, but forgot to actually write them to the usb, so was getting Storage errors and could not install anything. This took me 2 days to figure out lol.
ReplyDeleteGreat post! I am actually getting ready to across this information, It's very helpful for this blog.Also great with all of the valuable information you have Keep up the good work you are doing well.
ReplyDeleteccna training in chennai velachery
Thank you for taking time to provide us some of the useful and exclusive information with us.
ReplyDeleteccna Training in Chennai | ccna course in Chennai | ccna Training institute in Chennai
I had problems with the ext4 partition in the usb drive. to solve this i used ext3 and it works without problem
ReplyDeleteI'm stuck trying to pivot root to the usb, once I create the /mnt/sda2 I cannot mount it because it says it is not there, and then when I create it again it says it already exists. I have tried reflashing my router and nothing has helped. Can anyone help? :(
ReplyDeleteI'm having is issue as well, was there ever a fix found?
DeleteI also have this issue, I've been at it for a few days and could not get it to work. Did you?
Deleteinstall kmod-lib-crc32c and kmod-crypto-crc32c then try again.
Deletethat doesn't work, after research I found that is because new kernels format partitions with crc32 instead of crc16 which is supported, for solve this I did downloaded an old livecd with an old kernel, format the USB all over again and that's it!
DeleteI have been tying to get this set up for the past few 2 days. When I came across your article and wanted to know id others have been able to get it to work. Glad to hea from anyone with updated info blancomichael0@gmail.com...
ReplyDeleteUseful post.Thanks for taking time to share this post.
ReplyDeleteRegards,
Unix Training in Chennai | Best Unix Training in Chennai
The screenshots help with the tutorial.
ReplyDeleteAwesome Blog. Java Training Institute in Chennai | Java Training Institute in Velachery.
ReplyDeleteThanks for your great information! Keep sharing.
ReplyDeletecloud erp in chennai | erp software solutions provider in chennai
There was very wonderful information and that's great one. I really appreciate the kind words, thanks for sharing that valuable information.
ReplyDeleteDigital marketing course in chennai
You are doing a great job. You inspire me to write for other. Thank you very much. I would like to appreciate your work for good accuracy and got informative knowledge from here.
ReplyDeleteiOS App Development Company
I have completely read your post and the content is crisp and clear.Thank you for posting such an informative article, I have decided to follow your blog so that I can myself updated. Java Training in Chennai
ReplyDelete192.168.0.1 is the address of an array of D-Link and Netgear model routers, similar to 192.168.1.1
ReplyDeleteThanks for sharing this useful and interesting Blog..keep updating.
ReplyDeleteCCNA Training Institute in Chennai | CCNP Training Institute in Chennai | No.1 CCNA Training in Chennai | Best CCNP Training in Chennai
I can continue perusing this blog like until the end of time.
ReplyDeletebuy backlinks
Great tips and its so easy to understand. really You explain everything in detailed manner and it was very interesting to read. Thank you. Best Dot Net Training in Chennai | Best Java Training in Chennai | Best Web Design Training in Chennai
ReplyDeleteWell Said, you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your Ideas.
ReplyDeleteNo.1 Software Testing Training Institute in Chennai | Best Selenium Training Institute in Chennai | Java Training in Chennai
Excellent Post..Thanks for sharing this useful Blog..
ReplyDeleteITIL Certification Exam Center in Chennai | ITIL Certification Training in Chennai | Online Training in Chennai
I believe there are many more pleasurable opportunities ahead for
ReplyDeleteindividuals that looked at your site.
Selenium Training in Chennai
Very helpful post.Thanks for your information! Keep sharing.
ReplyDeleteFinal Year Project Center in Chennai | Best Final Year Project Center in Chennai | No.1 Project Center in Velachery
I read your blog, it's very useful information. keep posting...
ReplyDeletePower System Project Center in Chennai | Power System Project Center in Velachery
This comment has been removed by the author.
ReplyDeleteExisting without the answers to the difficulties you’ve sorted out through this guide is a critical case, as well as the kind which could have badly affected my entire career if I had not discovered your website.
ReplyDeleteBesant technologies Marathahalli
I believe there are many more pleasurable opportunities ahead for individuals that looked at your site.
ReplyDeleteJava Training in Marathahalli
That was a very frequent mistake which is occurred every where.
ReplyDeletePlease click on the link below.
CEH training in bangalore
Bookmark your website on several social bookmarking websites. online link building
ReplyDeleteI am very glad to read such a great blog...really superb..
ReplyDeleteSoftware Testing Training Center in Chennai |Best Selenium Training Institute in Chennai | RPA Training Institute in Chennai
thanks for sharing wonderful article..keep updating DotNet Training Institution in Chennai, | DotNet Training in Chennai | DotNet Training Center in Velachery
ReplyDeleteThis topic has always been one of my favorite subjects to read about. I have found your post to be very rousing and full of good information. router ip address
ReplyDeleteGreat and useful article.Thanks for taking time to share this post..Data Mining Projects Center in Chennai | Data Mining Projects Center in Velachery
ReplyDeleteGreat article,i get new ideas because of all given information very excellent and real words
ReplyDeleteNo.1 Dot Net Project Center in Chennai | No.1 Dot Net Project Center in Velachery
Excellent blog. Your blog gives lots of information, keep up the good work and share more.
ReplyDeleteDigital Marketing Course in Chennai
Digital Marketing Course
Those guidelines additionally worked to become a good way to recognize that other people online have the identical fervor like mine to grasp great deal more around this condition.
ReplyDeleteoracle training in Bangalore
It has been just unfathomably liberal with you to give straightforwardly what precisely numerous people would've promoted for an eBook to wind up making some money for their end, basically given that you could have attempted it in the occasion you needed.
ReplyDeleteBig Data Training in Marathahalli
Thanks for sharing amazing information !!!!!!
ReplyDeletePlease keep up sharing.
What Should the Link Entail? What Should You Put on Your Link Page? When you have focused on an inbound link opportunity, you will need to recommend the link area and the correct link dialect you wish to show up on their site. 41 High Domain And Page Authority Backlinks
ReplyDeleteReally cool post, highly informative and professionally written and I am glad to be a visitor of this perfect blog..Embedded Project Center in Chennai | Embedded Project Center in Velachery
ReplyDeleteAwesome Post! I like writing style, how you describing the topics throughout the post. I hope many web reader will keep reading your post at the end, Thanks for sharing your view.
ReplyDeleteRegards,
white label website builder
I appreciate your language.Really it's useful for all others..
ReplyDeleteNo.1 Image Processing Project Center in Chennai | No.1 Image Processing Project Center in Velachery
Really a very nice blog i really appreciate all your effort, thank you so much for sharing...Java Project Center in Chennai | Java Project Center in Velachery
ReplyDeleteNice article.Thanks for sharing this valuable post which is very helpful.
ReplyDeletePower System Project Center in Chennai | Power System Projects in Velachery
Your Blog is really awesome with impressive content.keep updating such an wonderful post.
ReplyDeleteCloud Computing Project Center in Chennai | IEEE Cloud Computing Projects in Velachery
False information
ReplyDeletemobile games development toronto
c/c++ development company
java development company
- Amna
This is what I am looking for since days ago, finally found here with good content. Thanks for sharing...
ReplyDeleteBest Online Software Training Institute | Data Science Training
Awesome Blog with Smart Content, Thanks for sharing such a nice blog. Tata Sky DTH New Connection in Chennai | Tata Sky | Tata Sky New Connection
ReplyDeleteThanks for sharing the valuable content do keep sharing on...
ReplyDeleteBest Online Software Training Institute | Software Training in Chennai
Nice information..Keep updating..
ReplyDeleteSummer Course Training in Chennai | Summer Course Training in Velachery
Thanks for your effort to put this information here. I think its useful.for more information about machine learning go through this link. machine learning training in hyderabad
ReplyDeleteThanks for the sharing.
ReplyDeleteaws training in velachery|aws training in OMR|aws certification training in Chennai|aws course in chennai what is the qualification
Good Post! you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your Ideas.
ReplyDeleteCCNA Training in Chennai | CCNA Training in Velachery
Really a Nice Informative Post ,Keep it up.
ReplyDeleteBlue Prism Training in Chennai | Blue Prism Training in Velachery
Very useful post.Thanks for posting this informative post
ReplyDeleteWeb Designing Training Institute in Chennai | Web Designing Training Institute in Velachery
This article is very useful to me.Thanks for posting this article.
ReplyDeleteBest Selenium Training Institute in Chennai | Best Selenium Training Insritute in Velachery
Those guidelines additionally worked to become a good way to recognize that other people online have the identical fervor like mine to grasp great deal more around this condition.
ReplyDeleteCertified Ethical Hacking Training Institute in Chennai | Certified Ethical Hacking Training Institute in Velachery
Really a Nice Informative Post ,Keep it up.thanks for publishing this post.
ReplyDeleteCLOUD COMPUTING Classes in Chennai | CLOUD COMPUTING Courses in Velachery
It's a nice post thank you for sharing.....
ReplyDeleteSelenium Testing Course in Chennai | Selenium Testing Course in Velachery
Nice post. Great information and really very much useful. Thanks for sharing and keep updating.
ReplyDeleteBest Dotnet Training Institute in Chennai|Best Dotnet Training Institute in Velachery
wow great info. i am sure i will share this to my friends and relatives. Thank you very much.
ReplyDeleteOneplus Service Center in Chennai | Oneplus Service Centre | Oneplus Service Center | Oneplus Service Center near me | Oneplus Service Center in velachery | Oneplus Service Chennai
Useful information and Please keep updating us..... Thanks for sharing...
ReplyDeleteBest Android & IOS Training Institute in Chennai | Best Android & IOS Training Institute in Porur
Really a Nice Informative Post ,Keep it up.thanks for publishing this post.
ReplyDeleteNo.1 Automation Anywhere Training Institute in Chennai | No.1 Automation Anywhere Training Institute in Kanchipuram | No.1 Automation Anywhere Training Institute in Velachery
My partner and I stumbled over here different website and thought I might as well check things out. I like what I see so now I’m following you. Look forward to checking out your web page repeatedly.
ReplyDeleteAutomation Anywhere Training with Placement in Chennai | Automation Anywhere Training with Placement in Tambaram
Your new valuable key points imply much a person like me and extremely more to my office workers. With thanks; from every one of us.
ReplyDeleteNo.1 Automation Anywhere Training Institute in Chennai | No.1 Automation Anywhere Training Institute in Velachery
It's a nice post thank you for sharing.....
ReplyDeleteSap Hana Training
Sap Cs Training
I was curious if you ever considered changing the layout of your site? It’s very well written; I love what you’ve got to say. You’ve got an awful lot of text.
ReplyDeleteSEO Training Institute in Chennai | SEO Training Institute in Kanchipuram
myTectra Placement Portal is a Web based portal brings Potentials Employers and myTectra Candidates on a common platform for placement assistance
ReplyDeleteThank you for taking the time to provide us with your valuable information. Keep sharing your post regularly..
ReplyDeleteUIPath Robotic Process Automation in Chennai | UIPath Training in Tambaram
This is an awesome post.Really very informative and creative contents. These concept is a good way to enhance the knowledge.I like it and help me to development very well.Thank you for this brief explanation and very nice information.
ReplyDeleteTableau Training in Chennai
Tableau Training
Excellent information...It was getting more information about your blog. Thanks for sharing, keep updating.
ReplyDeleteMCSE&MCSA Training institute in Chennai |MCSE&MCSA Training institute in Tambaram
Really it was an awesome article...very interesting to read.. You have provided a nice article....Thanks for sharing..
ReplyDeleteNo.1 Blue Prism Training Institute in Chennai | No.1 Blue Prism Training Institute in Kanchipuram
I read this article which is very informative.Thanks for this article.Keep updating.Regards,
ReplyDeleteBest Automation Anywhere Training Institute in Chennai | Best Automation Anywhere Training Institute in Kanchipuram
Well Said, you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your ideas.
ReplyDeleteNo.1 UIPath Training Institute in Chennai | No.1 UIPath Training Institute in Velachery
Nice post. Great information and really very much useful. Thanks for sharing and keep updating.
ReplyDeleteProgramming C, C++ Training Institute in Chennai|Programming C, C++ Training Institute in Kanchipuram
Nice post... Really you are done a wonderful job. Thanks for sharing such wonderful information with us. Please keep on updating...
ReplyDeleteBest Graphic designing& Multimedia courses in Chennai |Best Graphic designing& Multimedia courses in Guindy
Awesome post. Really you are shared very informative concept... Thank you for sharing. Keep on updating...
ReplyDeleteBest Selenium Training Institute in Chennai|Best Selenium Training Institute in Medavakkam
Your good knowledge and kindness in playing with all the pieces were very useful. I don’t know what I would have done if I had not encountered such a step like this.
ReplyDeleteEthical Hacking Training in Chennai | Ethical Hacking Training in Shozhinganallur
Utilization of refined and mesmeric is all that is expected to deliver such a grand blog.
ReplyDeletehttps://qualityseopackages.com/hire-virtual-assistants-coworkers/
I read this article which is very informative.Thanks for this article.Keep updating.Regards,
ReplyDeletePython Certification Course in Chennai | Python Certification Course in OMR
Awesome post. Really you are shared very informative concept... Thank you for sharing. Keep on updating...
ReplyDeleteBest Dotnet Training Institute in Chennai |Best Dotnet Training Institute in Kanchipuram
Nice post. Great information and really very much useful. Thanks for sharing and keep updating.
ReplyDeleteBest Cloud Computing Training Institute in Chennai |Best Cloud Computing Training Institute in Taramani
Thanks for posting your Informative blog… It is very useful for me, thanks a lot for sharing such a wonderful article…
ReplyDeleteLinux Training Institute in Chennai | Linux Training Institute in Kanchipuram
Amazing blog about the various informative information on the programming languages... Best MBA Project Center in Velachery – Guindy and porur | Best MBA Project Center in Velachery – Guindy and porur
ReplyDeleteExcellent information with unique content and it is very useful to know about the information based on blogs...
ReplyDeleteBest Android and IOS Training Institute in Chennai |Best Android and IOS Training Institute in Tnagar
It's very great post...Thanks for sharing such an informative post..
ReplyDeleteHardware and Networking Training in Chennai | Hardware and Networking Training in Taramani
Thanks for one marvelous posting! I enjoyed reading it; you are a great author. I will make sure to bookmark your blog and may come back someday. I want to encourage that you continue your great posts, have a nice weekend!
ReplyDeletePython Exam Centers in Chennai | Python Exam Centers in Chennai
This blog is really useful and it is very interesting thanks for sharing, it is really good and exclusive.
ReplyDeleteBest Selenium Training Institute in Chennai | Best Selenium Training in Tambaram
Nice article… I am sure I will share this information to my friends and relatives. Thanks for sharing the useful blog
ReplyDeletePCB Training Institute in Chennai | PCBTraining Institute in Velachery
Wow such a nice blog, very help full information. Thanks for sharing.
ReplyDeleteBest Hardware and Networking Training Institute in Chennai |Best Hardware and Networking Training Institute in Kanchipuram
This is really too useful and have more ideas from yours. keep sharing many techniques and thanks for sharing the information.
ReplyDeleteC and C++ Training in Chennai | C and C++ Training in Taramani
This is really too useful and have more ideas from yours. keep sharing many techniques and thanks for sharing the information.
ReplyDeleteC and C++ Training in Chennai | C and C++ Training in Taramani
Excellent information with unique content and it is very useful to know about the information based on blogs...
ReplyDeleteMCSE&MCSA Training institute in Chennai |MCSE&MCSA Training institute in Madipakkam
ReplyDeleteVery nice post here thanks for it .I always like and such a super contents of these post.
DevOps Online Training
Thanks for your information, the blog which you have shared is useful to us. Best Mobile Computing Project Center in Chennai at Velachery – Saidapet and Pallavaram | Best Mobile Computing Project Center in Chennai at Velachery – Saidapet and Pallavaram
ReplyDeleteReally awesome work. keep on blogging
ReplyDeleteDatastage Online Training
The strategy you have posted on this technology helped me to get into the next level and had lot of information in it…
ReplyDeleteSoftware Testing Training Institute in Chennai |Software Testing Training Institute in Taramani
It's very great post... Really you are... done a wonderful job Keep up the good work and continue sharing like this.
ReplyDeleteOracle Training in Chennai | Oracle Training in Kanchipuram
I read this article which is very informative.Thanks for this article.Keep updating.Regards,
ReplyDeleteBlueprism Exam Center in Chennai | Blueprism Exam Center in Velachery
This blog very easily understandable. Thanks for sharing such an informative post with us.This is a nice post in an interesting line of content.
ReplyDeleteMicrosoft Advanced Excel and VBA Macros Training in Chennai | Microsoft Advanced Excel and VBA Macros Training in Kanchipuram
This information is very useful to know more details about the technology.Thanks for this nice post.Keep updating.
ReplyDeleteBest UIPath Training Institute in Chennai | Best UIPath Training Institute in Velachery
Thanks for your information, the blog which you have shared is useful to us.Best Image Processing Project Center in Chennai | Best Image Processing Project Center in Tambaram
ReplyDeleteThanks for your post, i really liked it, keep sharing!!
ReplyDeleteDevOps Online Training
Nice post. Great information and really very much useful. Thanks for sharing and keep updating.
ReplyDeleteBest Selenium Training Institute in Chennai|Best Selenium Training Institute in Saidapet
This information is very useful to know more details about the technology.Thanks for this nice post.Keep updating.
ReplyDeleteEthical Hacking Training Course in Chennai | Ethical Hacking Training Course in Nanganallur
I liked this post.The information you explained about the technology is very useful.Thanks for sharing this information.
ReplyDeleteRPA Training in Chennai | RPA Training in Pallikaranai
Very informative blog. Thanks for sharing such good information and keep on updating.
ReplyDeleteiOS Training in Chennai | iOS Training in Tambaram
Thank you.its a nice blog.
ReplyDeleteData Science Online Training in Hyderabad
I liked this post.This information is good that is very useful.Thanks for sharing this.Keep updating.Regards,
ReplyDeleteBlue prism Training in Chennai | Blue prism Training in Besant Nagar
Thanks for sharing such a wonderful blog here...
ReplyDeleteBest Selenium Training Institute in Chennai|Best Selenium Training Institute in Pallikaranai
Thanks its Great Article… I love to read your articles because your writing style is too good, its is very very helpful for all of us.
ReplyDeleteISTQB Training in Chennai | ISTQB Training in Guindy
Awesome article…. Really very helpful information for us. Keep it up. Keep blogging. Looking to reading your next post,. Thank You for Sharing This Information...
ReplyDeleteSoftware Testing Training in Chennai | Software Testing Training in Saidapet
It's very great post... Really you are... done a wonderful job Keep up the good work and continue sharing like this.
ReplyDeleteJava Training in Chennai | Java Training in Chrompet
Great post. Wonderful information and really very much useful. Thanks for sharing and keep updating.
ReplyDeletePerfect and Outstanding Dotnet Training Institute in Chennai| Perfect and Outstanding Dotnet Training Institute in Adyar
This is really very useful for me.I enjoyed your information in this article.Keep updating.Thanks for your information.
ReplyDeleteAutomation Anywhere Training in Chennai | Automation Anywhere Training in Ashok Nagar
I am reading your post from the beginning, it was so interesting to read & I feel thanks to you for posting such a good blog, keep updates regularly.
ReplyDeleteEthical Hacking Training in Chennai | Ethical Hacking Training in Thiruvanmiyur
Very informative blog. Thanks for sharing such good information and keep on updating.
ReplyDeleteAndroid Training in Chennai | Android Training in Porur
Very interesting content which helps me to get the in depth knowledge about the technology.
ReplyDeleteJava Training in Chennai | Java Training in St.Thomas Mount
It's very great post... Really you are... done a wonderful job Keep up the good work and continue sharing like this.
ReplyDeleteBest Software Testing Training Institute in Chennai | Best Software Testing Training Institute in T.Nagar
Nice Post! It is really interesting to read from the beginning and Keep up the good work and continue sharing like this.
ReplyDeleteISTQB Certification Course in Chennai | ISTQB Certification Course in Sozhinganallur
Nice blog.. Thanks for sharing informative blog.. its very useful to me..
ReplyDeleteSoftware Testing Course in Chennai | Software Testing Course in Perungudi
This blog is really useful and it is very interesting thanks for sharing, it is really good and exclusive.
ReplyDeleteBlue prism Training in Chennai | Blue prism Training in Medavakkam
Really very nice blog information for this one and more technical skills are improve,i like that kind of post.
ReplyDeleteBest Ethical Hacking Training Institute in Chennai | Best Ethical Hacking Training Institute in Velachery
It's interesting that many of the bloggers to helped clarify a few things for me as well as giving. Most of ideas can be nice content. The people to give them a good shake to get your point and across the command.fire and safety course in chennai
ReplyDeleteYour blog is really amazing with smart and cute content.keep updating such an excellent article..
ReplyDeleteJAVA and J2EE Training Institute in Chennai | JAVA and J2EE Training Institute in Besant Nagar
It's very great post...Thanks for sharing such an informative post..
ReplyDeleteRobotic Process Automation Training course in Chennai | Robotic Process Automation Training course in T.Nagar
The provided information’s are very useful to me.Thanks for sharing.Keep updating your blog...
ReplyDeleteSoftware Testing Course in Chennai | Software Testing Course in Keelkattalai
Really i enjoyed very much. And this may helpful for lot of peoples. So you are provided such a nice and great article within this.
ReplyDeleteIOS Training Institute in Chennai | IOS Training Institute in Pallavaram
Nice Post! It is really interesting to read from the beginning and Keep up the good work and continue sharing like this.
ReplyDeleteSelenium Automation Course in Chennai | Selenium Automation Course in Pallikaranai
Your good knowledge and kindness in playing with all the pieces were very useful. I don’t know what I would have done if I had not encountered such a step like this.
ReplyDeleteUIPath Training in Chennai | UIPath Training in Guindy
Thank you for taking time to provide us some of the useful and exclusive information with us. Best Electrical Project Center in ChennaI | Best Electrical Project Center in Tambaram
ReplyDeleteThis information you provided is very useful for me.Thanks for your information.Keep updating.Regards,
ReplyDeleteRPA Training in Chennai | RPA Training in Madipakkam
Amazing post!!! This post is very comprehensive and i learn more ideas. Thanks for your post, i like more updates from your blog...
ReplyDeletePHP Training in Bangalore
PHP Institutes in Bangalore
PHP Course in Chennai
PHP Course in Annanagar
PHP Course in Aminjikarai
PHP Course in Sholinganallur
Interesting post, Thank you for sharing post...
ReplyDeleteSoftware Training institute in hyderabad | Software Training courses in hyderabad
Awesome post. Really you are shared very informative concept... Thank you for sharing. Keep on updating...Best MBA Project Center in Chennai |Best MBA Project Center in Perungudi
ReplyDeleteNice post. This post is very helpful. Thank you so much for sharing this post….
ReplyDeleteAdvanced SoftwareTesting Course in Chennai | Advanced SoftwareTesting Course in Saidapet
It's really a nice experience to read your post. Thank you for sharing this useful information. If you are looking for more about artificial intelligence and machine learning course in chennai
ReplyDeletemachine learning classroom training in chennai
machine learning certification in chennai
Android training in chennai
PMP training in chennai
All the points you described so beautiful. Every time i read your blog content and i so surprised that how you can write so well.
ReplyDeleteBest Python Training institute in Chennai | Best Python Training institute in Thiruvanmiyur
Wow! I've been searching for this for a while. Glad that you posted it. This will be really helpful. I'm taking reference from here. Keep us updated with more such posts.
ReplyDeleteSpark Training in Chennai
C C++ Training in Chennai
C Training in Chennai
Microsoft Dynamics CRM Training in Chennai
Microsoft Dynamics Training in Chennai
Spark Training in Porur
Spark Training in Anna Nagar
Nice post. Great information and really very much useful. Thanks for sharing and keep updating.
ReplyDeleteBest MCSE Training Institute in Chennai | MCSA Training Institute in Velachery
It’s too informative blog and I am getting conglomerations of info’s. Thanks for sharing; I would like to see your updates regularly so keep blogging. Regards,
ReplyDeleteEthical Hacking Training in Chennai | Ethical Hacking Training in Taramani
Really a Nice Informative Post ,Keep it up.
ReplyDeleteBlueprism Exam Center in Chennai | Blueprism Exam Center in Velachery
The strategy you posted was nice.
ReplyDeleteRPA Training with Placement in Chennai | RPA Training institute in Velachery
Great post. Wonderful information and really very much useful. Thanks for sharing and keep updating.
ReplyDeleteMCSE&MCSA Training institute in Chennai |MCSE&MCSA Training institute in Kanchipuram
Awesome post. Really you are shared very informative concept... Thank you for sharing. Keep on updating...
ReplyDeleteBest Selenium Training Institute in Chennai |Best Selenium Training Institute in Kanchipuram
Nice post... Really you are done a wonderful job. Thanks for sharing such wonderful information with us. Please keep on updating...
ReplyDeleteBest Selenium Training Institute in Chennai |Best Selenium Training Institute in Kanchipuram
The information you shared is very effective for learners. I learnt this technology very well with the help of this article.Thanks for this useful information.Keep updating.
ReplyDeleteBlue Prism Training in Chennai | UI Path Training in Chennai | Automation Anywhere Training in Chennai
Does your blog have a contact page? I’m having problems locating it but, I’d like to shoot you an email. I’ve got some recommendations for your blog you might be interested in hearing.
ReplyDeleteindustrial safety course in chennai
Nice and good article. It is very useful for me to learn and understand easily. Thanks for sharing your valuable information and time. Please keep updating...
ReplyDeleteIOS Training Institute in Chennai | IOS Training Institute in Tharamani
Excellent Post. I am a regular contributor of your blog. I have gathered some needful information from this blog. Keep update your blog. Waiting for your next update.
ReplyDeleteNo.1 Automation Anywhere Training Institute in Chennai | No.1 Automation Anywhere Training Institute in Velachery
Thank you for your information. I have got some important suggestions from Microsoft .Net course in Chennai | Microsoft .Net course in Velachery. it. Keep on sharing.
ReplyDeleteExcellent information with unique content and it is very useful to know about the information based on blogs...
ReplyDeleteMicrosoft .Net course in Chennai | Microsoft .Net course in Velachery.
Nice blog. Thank you for sharing. The information you shared is very effective for learners I have got some important suggestions from it…
ReplyDeleteServer Administration Training in Chennai | Server Administration Training in Kanchipuram
Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge.
ReplyDeleteWeb Designing and Development course in Chennai | Web Designing and Development course in Adyar
Nice post... Really you are done a wonderful job. Thanks for sharing such wonderful information with us. Please keep on updating...
ReplyDeleteBest Microsoft Azure Training Institute in Chennai | Best Microsoft Azure Training Institute in Velachery
Nice post great information and really very much useful. Thanks for sharing and keep updating.
ReplyDeleteBest Dotnet Training Institute in Chennai |Best Dotnet Training Institute in Kanchipuram
best angularjs training institute in chennai | angularjs training in omr | angular 4 training in chennai | angularjs training in omr
ReplyDeleteUseful information and Please keep updating us..... Thanks for sharing...
ReplyDeleteBest Web Designing and Development Training Institute in Chennai | Best Web Designing and Development Training Institute in Taramani
Excellent information with unique content and it is very useful to know about the information based on blogs...
ReplyDeleteManual Testing Training with placement in Chennai | Manual Testing training with placement in Velachery
Thank you for your information. I have got some important suggestions from it. Keep on sharing.
ReplyDeleteSelenium Testing Tools Training with placement in Chennai|Selenium Testing tools training with placement in Velachery
This time the admin has shared an awesome post.
ReplyDeleteSpoken English Classes in Chennai
Spoken English in Chennai
IELTS Coaching in Chennai
IELTS Coaching Centre in Chennai
IELTS Training in Chennai
Best IELTS Coaching in Chennai
IELTS Classes in Chennai
English Speaking Classes in Mumbai
Spoken English Classes in Anna Nagar
Impressive blog with lovely information really very useful article for us thanks for sharing such a wonderful blog...
ReplyDeleteSelenium Testing Tools Training with placement in Chennai|Selenium Testing tools training with placement in Velachery
These provided information was really so nice, thanks for giving that post and the more skills to develop after refer that post.
ReplyDeleteAdvanced Microsoft .net Training Institute in Chennai | Advanced Microsoft .net Training Institute in Kanchipuram |Advanced Microsoft .net Training Institute in Velachery
Your good knowledge and kindness in playing with all the pieces were very useful. I don’t know what I would have done if I had not encountered such a step like this.
ReplyDeleteNo.1 Blue Prism Training Institute in Chennai | No.1 Blue Prism Training Institute in Velachery
Pretty article! I found some useful information in your blog, it was awesome to read, thanks for sharing this great content to my vision, keep sharing.
ReplyDeleteWeb Designing and Development Training Institute in Chennai | Web Designing and Development Training Institute in Tambaram
Thank you so much for sharing this worth able content with us. Keep blogging article like this.
ReplyDeleteBest Dotnet Training Institute in Chennai|Best Dotnet Training Institute in Velachery
Excellent information...It was getting more information about your blog. Thanks for Sharing, keep updating.
ReplyDeleteAdvanced Software Testing Course in Chennai |Advanced Software Testing Course in Velachery
It was really an interesting blog, Thank you for providing unknown facts.
ReplyDeleteAviation Academy in Chennai
Air hostess training in Chennai
Airport management courses in Chennai
Ground staff training in Chennai
Aviation Courses in Chennai
Air Hostess Training Institute in Chennai
airport courses in Chennai
airport ground staff training courses in Chennai
Nice blog. Thank you for sharing. The information you shared is very effective for learners I have got some important suggestions from it… Best MBA project center in Chennai| Best MBA Project Center Tharamani
ReplyDeleteReally I gained more knowledge from your post... thanks for updating your article.
ReplyDeleteNo.1 Software Testing Training institute in Chennai|No.1 Software Testing Training institute in Kanchipuram|No.1 Software Testing Training institute in Velachery
Well Said, you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your Ideas.
ReplyDeleteRobotic Process Automation Training course in Chennai | Robotic Process Automation Training course in Velachery
Nice blog..! I really loved reading through this article. Thanks for sharing such a amazing post with us and keep blogging... best angularjs training institute in chennai | angularjs training in omr | angularjs training in chennai | angularjs best training center in chennai
ReplyDeleteYou have explained the right information that will be useful to anyone at all time.
ReplyDeleteAutomation Anywhere in Chennai | Automation Anywhere in Velachery
Really a Nice Informative Post ,Keep it up.
ReplyDeleteGraphic Designing Training Institute in Chennai | Graphic Designing Training Institute in Kanchipuram
These provided information was really so nice, thanks for giving that post and the more skills to develop after refer that post.
ReplyDeleteSoftware Testing Course in Chennai | Software Testing Course in Velachery
Nice blog. Thank you for sharing. The information you shared is very effective for learners I have got some important suggestions from it…
ReplyDeleteBest software testing training in Chennai |Best software testing training in Kanchipuram
|Best software testing training in Velachery
Nice post... Really you are done a wonderful job. Thanks for sharing such wonderful information with us. Please keep on updating...
ReplyDeleteAdvanced Web Designing and Development course in Chennai| Advanced Web Designing and Development course in velachery| Advanced Web Designing and Development course in kanchipuram|
Thanks for sharing wonderful article,https://www.alltechzsolutions.in/embedded-systems-training-in-chennai.php
ReplyDeleteAwesome post really you are shared very informative concept... Thank you for sharing. Keep on updating...
ReplyDeleteAdvanced Microsoft .Net Training Institute in Chennai |Advanced Microsoft .Net Training Institute in Kanchipuram | Advanced Microsoft .Net Training Institute in Velachery
Such a cute blog. Thank you for blogging. Keep adding more blogs. Very nicely presented.Best JAVA Institute in Chennai|
ReplyDeleteBest JAVA Institute in Velachery|
Best JAVA Institute in Kanchipuram|
Such a cute blog. Thank you for blogging. Keep adding more blogs. Very nicely presented.Best Software Testing Institute in Chennai|
ReplyDeleteBest Software Testing Institute in Velachery|
Best Software Testing Institute in Kanchipuram|
Awesome blog. Your articles really impressed for me, because of all information so nice and unique...
ReplyDeleteAdvanced Certified Ethical Hacking Training in Chennai | Advanced Certified Ethical Hacking Training in Velachery
Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge.
ReplyDeleteBlue Prism Training in Chennai | Blue Prism Training in Taramani | Blue Prism Training in Velachery
Great post and informative blog.it was awesome to read, thanks for sharing this great content to my vision.
ReplyDeleteAdvanced .Net Course in Chennai |
Advanced .Net Course in Velachery |
Advanced .Net Course in Kanchipuram |
Excellent information with unique content and it is very useful to know about the information based on blogs...
ReplyDeleteSelenium course in Taramani | Selenium Certification in Tambaram | Selenium Training in Chennai | Selenium Training Center in Velachery
Really it was an awesome article. Very useful & Informative..Thanks for sharing..
ReplyDeleteBest Java J2EE Training Institute in Chennai | Best Java J2EE Training Institute in Medavakkam
This is really too useful and have more ideas from yours. keep sharing many techniques and thanks for sharing the information.
ReplyDeleteBlue Prism Training in Chennai | Blue Prism Certification in Medavakkam | Blue Prism Training Center in Velachery
Nice Post! It is really interesting to read from the beginning and Keep up the good work and continue sharing like this.
ReplyDeleteSelenium Exam Center in Chennai | Selenium Exam Center in Velachery | Selenium Online Exam in Taramani | Selenium Certification Exam in Madipakkam | Selenium Exams in Kanchipuram
I have read your blog its very attractive and impressive. I like it your blog.
ReplyDeleteNo.1 Ethical Hacking Training institute in Chennai | No.1 Ethical Hacking Training institute in Kanchipuram
Thanks for posting this useful content, Good to know about new things here, Keep updating your blog...
ReplyDeleteSelenium Certification Training in Chennai | Selenium Certification in Velachery | Selenium Certification in Taramani | Selenium Certification in Madipakkam | Selenium Certification in Guindy
Nice blog. Thanks for sharing informative blog. Its very useful to me.
ReplyDeleteBlue Prism Certification in Chennai | Blue Prism Certification in Velachery | Blue Prism Certification in Pallavaram | Blue Prism Certification in Pallikaranai
This is really too useful and have more ideas from yours. keep sharing many things and thanks for sharing the information
ReplyDeleteBest Android Training in Chennai|
Best Android Training in Velachery|
Best Android Training in Kanchipuram|
Awesome post. Really you are shared very informative concept... Thank you for sharing. Keep on updating...
ReplyDeleteBest Dot Net Training center in Chennai | Best Dot Net Training center in Velachery
Really i enjoyed very much. And this may helpful for lot of peoples. So you are provided such a nice and great article within this.
ReplyDeleteAndroid Training Center in Chennai | Android Training Centre in Velachary | Android Training Centre in Kancheepuram |
Well Said, you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your Ideas
ReplyDeleteBest Graphic Designing Training Institute in Chennai | Best Graphic Designing Training Institute in Kanchipuram
Impressive blog with lovely information really very useful article for us thanks for sharing such a wonderful blog...
ReplyDeleteBest Hardware and Network training in Chennai |Best Hardware and Network training in Velachery
Awesome post. Really you are shared very informative concept... Thank you for sharing. Keep on updating...
ReplyDeleteAndroid Training Institute in Chennai | Android Training Institute in Velachery | Android Training in Taramani | Android Course in Chennai