Posts

powermta and vesta cp with mail wizz

Document power mta instalation guide change the host names with ns1.domain.com and ns2.domain.com by giving ip for godaddy go to dns management >> advanced feature change the name server and ip in domain provider install vesta cp using their command lines andlso make rdns in contabo login to vesta cp >>user >> admin>>edit >> name server >>> SOA change it to ns1.yourdomain.com >> web >> add doamin >> add your doamin and do as needed DNS >> add record >> type A record >> ns1 and ns2 and ip for domain test the doamin and check it Mail >> domain.com>> add account >> info , bounce , dmarc and abuse@domain.com, postmaster@domain.com and fbl@domain.com. check the inbox wiht roundcube and fix if needed

How to install and config pmta full detailed

Pmta installlation Pmta installlation 1. Point your domain and allow root log in Allow Root Login: ----------------- 1- Set a root password using the follwing Command: sudo passwd root 2- Open the SSH configuration File using the follwing command: sudo nano /etc/ssh/sshd_config 3- Search For PermitRootLogin and uncomment it and make sure its set to yes. 4- Then Go down in the file and set "PasswordAuthentication" to yes. Save and exit. 5- Restart SSH Service using the follwing command: sudo service sshd reload Thats it! 2.Installing vesta cp Install Vest Control Panel --------------------------- # Download installation

penetration testing in real workd introduction lect_01

Daemons and introduction to bash scripting Introduction to kali Deamons and bash shells Introduction to the services and how to manage them in kali How to write custom bash scripts (methodology ) Hi i am Rikan . Here i would be uploading all the challenges i am facing learning cyber Security This will be a well documented journey as i think , in my past i have never gone for a documented journey while learning something but this time i am trying this as someone else can also get help from me . By the way thanks for being a part of this journey , today is 3rd sept 2019. and my journey starts from here Introduction to the services In introduction to the kali interface , you

Preparing own windows machine in AWS for penetration testing in free

Preparing own pentesting lab machine 1.0 Instruction for setting your own lab machine for trying nc & ncat labs The basic things needed The amazon aws is giving the windows machines for free as of the date of blog written for 12 months as free tire. >> First sign up for an account >> After signing up enter you credit /debit card details and then choose for the free tire >> Then go to ec2 and choose a windows machine eligible for free tire >> Edit the security group for the for any ip and any range we need tcp and ssh port open >> While saving the .pem key file save it in a accessible safe location in your pc >> It will take sometime and see the status of up and running Setting up the host machine and getting the w

How to insall git and upload fies for version control

how to update your files into git hub (version control ) version control by git hub , or updating you codes into git hub Here only how to update i.e - how to push is explained This assumes you have a git hub or bit bucket account author email rinkanrohitjena@live.com How to install git in your linux system is instructed here >>if you have not installed the git on your computer type the following commands apt-get install git this will install git on your pc now visit to and sign up in your computer open the terminal and type git config --global user.name "john doe" replace the user name with your user name git config --global user.email

How to install wine in kalilinux for using .exe files in linux

How to install wine in kalilinux How to install wine in kali linux full guide i was trying to install wine in my kali but i was failing again and again as kali is based on the debian version of linux , and also people rarely luse kali linux as their first operating system. Here is how i did it >>first you need to add the proper architecture i386 into your system for that use the following code sudo dpkg --add-architecture i386 >>the next thing you need to get is the key wget -nc https://dl.winehq.org/wine-builds/winehq.key >> now time for some heavy lifting you need to add the the source into the source.list emacs /etc/apt/sources.list >&g

fixing the apt-get install lock issues on kali linux

Some times you may see some error while trying to download a new piece of script or file through the package installer ,and that might contain some string like E: locked or something like this  >>why this happens?? Ans: This problem occours as the apt-get process is used by another file or you can think it as busy now . >> What is the solution to it ?? Ans: So simple , you need to stop those processes of apt-get  at once  so run the following code in the terminal . >> killall apt-get And you are done . :)