tirsdag den 23. maj 2017
Thanks for fish
I stopped at DTU (on a leave).
This blog will not be updated until I'm back @DTU. (if ever!)
-Sorry...
torsdag den 20. oktober 2016
iRODS with Ansible
The story behind : My group ask me if I can do a Ansible install for iRODS.
But what is Ansible ?
Ansible is an open source, powerful automation software for configuring, managing and deploying software applications on the nodes without any downtime just by using SSH. Today, most of the IT Automation tools runs as a agent in remote host, but ansible just need a SSH connection and Python (2.4 or later) to be installed on the remote nodes to perform it’s action.
Prerequisites
Operating System: RHEL/CentOS/Fedora and Ubuntu/Debian/Linux Mint
Jinja2: A modern, fast and easy to use stand-alone template engine for Python.
PyYAML: A YAML parser and emitter for the Python programming language.
parmiko: A native Python SSHv2 channel library.
httplib2: A comprehensive HTTP client library.
sshpass: A non-interactive ssh password authentication.
Source : http://www.tecmint.com/install-and-configure-ansible-automation-tool-in-linux/
####Make the trust###
### please note IP is the MAIN note IP###
But what is Ansible ?
Ansible is an open source, powerful automation software for configuring, managing and deploying software applications on the nodes without any downtime just by using SSH. Today, most of the IT Automation tools runs as a agent in remote host, but ansible just need a SSH connection and Python (2.4 or later) to be installed on the remote nodes to perform it’s action.
Prerequisites
Operating System: RHEL/CentOS/Fedora and Ubuntu/Debian/Linux Mint
Jinja2: A modern, fast and easy to use stand-alone template engine for Python.
PyYAML: A YAML parser and emitter for the Python programming language.
parmiko: A native Python SSHv2 channel library.
httplib2: A comprehensive HTTP client library.
sshpass: A non-interactive ssh password authentication.
Source : http://www.tecmint.com/install-and-configure-ansible-automation-tool-in-linux/
My quick install (centOS) :
sudo rpm -iUvh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm
yum -y install ansible
####Make the trust###
ssh-keygen -t rsa -b 4096 -C "root@192.168.xxx.147"
ssh-copy-id root@192.168.xxx.148
ssh-copy-id root@192.168.xxx.149
### please note IP is the MAIN note IP###
To do the automate installation we use Ansible from www.ansible.com , Ansible-Tower and some ideas from EUDATs Github. On a Redhat/Centos 7.x.
Please note : You can easy re-use the shellscript with Ansible because it only need a ssh-login.
My RPMbuilder and installer:
https://raw.githubusercontent.com/sunadtudk/irods_2_figshare/master/Irods-install.sh
Update : Our Ansible script is online at : https://github.com/sunadtudk/ansible_irods
Shell script and help : https://github.com/EUDAT-B2STAGE/docker-images
Update : Our Ansible script is online at : https://github.com/sunadtudk/ansible_irods
Shell script and help : https://github.com/EUDAT-B2STAGE/docker-images
We just change the playbook from : https://github.com/aabdulwahed/iRODS/
So... do a clone and "hack" your own version ;-)
More IRODS :
http://bigdatadk.blogspot.dk/2016/08/update-irods-from-41x-to-42-with-yum.html
http://bigdatadk.blogspot.dk/2016/08/building-irods-419-from-source-on.html
More IRODS :
http://bigdatadk.blogspot.dk/2016/08/update-irods-from-41x-to-42-with-yum.html
http://bigdatadk.blogspot.dk/2016/08/building-irods-419-from-source-on.html
tirsdag den 11. oktober 2016
Tnx for Leaked Mirai Source Code Jerry Gamblin!
"Source code of Mirai botnet responsible for Krebs On Security DDoS released online
Now anyone can use the IoT-based botnet for their own destructive purposes."
Source :
http://www.zdnet.com/article/source-code-of-mirai-botnet-responsible-for-krebs-on-security-ddos-released-online/
Some days ago I got a tweet from a friend about the source code to a IoT BotNet.
The source can be found on : https://github.com/jgamblin/Mirai-Source-Code
Backup : http://pastebin.com/raw/8bgjhYQa
The files real file name (google for links!) :
loader.src.zip
dlr.src.zip
mirai.src.zip
Pix. Source : http://blog.malwaremustdie.org/2016/08/mmd-0056-2016-linuxmirai-just.html
Read the full text :
https://raw.githubusercontent.com/jgamblin/Mirai-Source-Code/master/ForumPost.txt
Configuring CNC
Code: apt-get install mysql-server mysql-client
CNC requires database to work. When you install database, go into it and run following commands:
http://pastebin.com/86d0iL9g
This will create database for you. To add your user,
Code: INSERT INTO users VALUES (NULL, 'anna-senpai', 'myawesomepassword', 0, 0, 0, 0, -1, 1, 30, '');
Now, go into file ./mirai/cnc/main.go
Edit these values
Code:
const DatabaseAddr string = "127.0.0.1"
const DatabaseUser string = "root"
const DatabasePass string = "password"
const DatabaseTable string = "mirai"
To the information for the mysql server you just installed
Setting Up Cross Compilers
Cross compilers are easy, follow the instructions at this link to set up. You must restart your system or reload .bashrc file for these changes to take effect. http://pastebin.com/1rRCc3aD
Source : http://hackforums.net/showthread.php?tid=5420472
Now anyone can use the IoT-based botnet for their own destructive purposes."
Source :
http://www.zdnet.com/article/source-code-of-mirai-botnet-responsible-for-krebs-on-security-ddos-released-online/
Some days ago I got a tweet from a friend about the source code to a IoT BotNet.
The source can be found on : https://github.com/jgamblin/Mirai-Source-Code
Backup : http://pastebin.com/raw/8bgjhYQa
The files real file name (google for links!) :
loader.src.zip
dlr.src.zip
mirai.src.zip
Pix. Source : http://blog.malwaremustdie.org/2016/08/mmd-0056-2016-linuxmirai-just.html
Read the full text :
https://raw.githubusercontent.com/jgamblin/Mirai-Source-Code/master/ForumPost.txt
Configuring CNC
Code: apt-get install mysql-server mysql-client
CNC requires database to work. When you install database, go into it and run following commands:
http://pastebin.com/86d0iL9g
This will create database for you. To add your user,
Code: INSERT INTO users VALUES (NULL, 'anna-senpai', 'myawesomepassword', 0, 0, 0, 0, -1, 1, 30, '');
Now, go into file ./mirai/cnc/main.go
Edit these values
Code:
const DatabaseAddr string = "127.0.0.1"
const DatabaseUser string = "root"
const DatabasePass string = "password"
const DatabaseTable string = "mirai"
To the information for the mysql server you just installed
Setting Up Cross Compilers
Cross compilers are easy, follow the instructions at this link to set up. You must restart your system or reload .bashrc file for these changes to take effect. http://pastebin.com/1rRCc3aD
Source : http://hackforums.net/showthread.php?tid=5420472
mandag den 10. oktober 2016
Thx for a nice RedHat Forum
Thx for a really great RedHat Forum In Copenhagen @Docken.
Lets do it agian nex year ;-)
Plz. note Microsoft.... at Redhat Forum!
mandag den 26. september 2016
Microsoft Ignite.. as a sofa scener :-(
September 26–30, 2016, Atlanta, GA : https://ignite.microsoft.com
Twitter :
Alot of live streaming... and stuff ;-)
tirsdag den 13. september 2016
Donation €4,000,000.00.... That's nice - if ever true ;-)
What a great story!!..... just saying : don't bullshit a bullshitter ;-)
send from mellisa lewis : xxxx@hotmail.com (one hotmail and one Yahoo??? Come on!!!)
My Donation €4,000,000.00
My Dear
With warm hearts I offer my friendship, and my greetings to you in the name of our lord God, and I hope this letter meets you in good time, I propose with my free mind and as a person of integrity from God, I know that this message will appear as a surprise to you that we barely know but the grace of God directed me to you and I wish you read this message and be blessed in name of the Lord.
I have a brain tumor, I suffer terribly at the moment. My doctor just informed me that my days are numbered because of my health therefore condemned to certain death. Currently, I have exhausted all my savings for my medical care. But I do have some funds for my charity project, these funds are deposited in a fixed deposit in a local bank here in Benin. purposed for charitable foundation My marital status is such that I'm single because I lost my Husband for over 9 years now and unfortunately we have not had a child together, which I am no one to leave my legacy . Therefore, to release my funds I would like to make a donation so that there is no stiff tax on my money.
To this I would so graceful and in order to help the poor to give what amounts to said legacy worth Four million euros (€4,000,000.00) (Four Million Euro) to enable you to establish a charitable foundation in my memory so that the grace of God be with me until my last home so I can receive an honorable place with the Lord our father. I have no fear because before contacted you, i have for several nights prayed for the Lord God to give me the contact of a trusted person to whom I can entrust this matter and it is the result of why I am doing research that allowed me to contact you through this site.
Know that you can keep half of the money for yourself and the rest will be used to create a charitable foundation in my memory and a federation in the fight against cancer and also build orphanages. I would have the following information: Your name and first name, your exact address and your permanent telephone contact so I can forward them to my lawyer to appear that you perform the procedure under deal. I count on your goodwill and especially on the proper use of these funds have something I do not doubt because I have great confidence in you that God may guide me toward you. My private E-mail: xxxxxxxxx@yahoo.com
Awaiting your prompt reply, receive my cordial and fraternal greetings.
Yours Sincerely
Mrs Mellisa Lewis
My Private email: xxxxxx@yahoo.com
My Dear
With warm hearts I offer my friendship, and my greetings to you in the name of our lord God, and I hope this letter meets you in good time, I propose with my free mind and as a person of integrity from God, I know that this message will appear as a surprise to you that we barely know but the grace of God directed me to you and I wish you read this message and be blessed in name of the Lord.
I have a brain tumor, I suffer terribly at the moment. My doctor just informed me that my days are numbered because of my health therefore condemned to certain death. Currently, I have exhausted all my savings for my medical care. But I do have some funds for my charity project, these funds are deposited in a fixed deposit in a local bank here in Benin. purposed for charitable foundation My marital status is such that I'm single because I lost my Husband for over 9 years now and unfortunately we have not had a child together, which I am no one to leave my legacy . Therefore, to release my funds I would like to make a donation so that there is no stiff tax on my money.
To this I would so graceful and in order to help the poor to give what amounts to said legacy worth Four million euros (€4,000,000.00) (Four Million Euro) to enable you to establish a charitable foundation in my memory so that the grace of God be with me until my last home so I can receive an honorable place with the Lord our father. I have no fear because before contacted you, i have for several nights prayed for the Lord God to give me the contact of a trusted person to whom I can entrust this matter and it is the result of why I am doing research that allowed me to contact you through this site.
Know that you can keep half of the money for yourself and the rest will be used to create a charitable foundation in my memory and a federation in the fight against cancer and also build orphanages. I would have the following information: Your name and first name, your exact address and your permanent telephone contact so I can forward them to my lawyer to appear that you perform the procedure under deal. I count on your goodwill and especially on the proper use of these funds have something I do not doubt because I have great confidence in you that God may guide me toward you. My private E-mail: xxxxxxxxx@yahoo.com
Awaiting your prompt reply, receive my cordial and fraternal greetings.
Yours Sincerely
Mrs Mellisa Lewis
My Private email: xxxxxx@yahoo.com
Abonner på:
Opslag (Atom)