Author Archives: admin

List of Default Passwords for Intel iPOS

iPOS is software from intel for advertising of notebook in shop. It starts automatically, tells about hardware, shows any demos, etc. People are buying notebooks and nobody knows how to close this f… sh… and how to stop it`s autolaunch. It is possible to delete iPOS using Start button or in Software Manager of Control Pannel. To change the settings of iPOS you need for password.

There are some default passwords to get to Settings menu of Intel iPOS:

tier3

2012Demo

storefloor (у меня этот подошёл на ASUS, intel iPOS BTS 2013)

LETNI2013

LETNI2015

2013

eldorado

ELDORADO

comfy

2014demo

2014Demo

2015demo

2016demo

2017demo

2018demo

Default Login and Password for RaspberryPi

In Raspbian distrib for RaspberryPi  by default

login is pi

password is raspberry

You can login to system via monitor by using HDMI or by Ethernet over SSH protocol, port number is 22, you can find ip address of RaspberryPi on web control panel of router or using any network scanner. By default RaspberryPi gets ip address by DHCP protocol.

Monitoring of changes in files at linux

I have got this script here: http://www.iamroot.ru/2013/01/kontrol-izmeneniya-fajlov-v-linux.html

Script:

#!/bin/bash

ulimit -t 20
checkdir="/bin /sbin"
filedb="/var/tmp/permsecdb"
email="test@iamroot.ru"

out=$(
exec 2>&1
umask 266
find $checkdir -type f -printf "%m\t" -exec md5sum {} \; >$filedb.tmp
diff $filedb $filedb.tmp
mv -f $filedb.tmp $filedb
)
if [ "$out" ];then 
 (date; echo; echo "$out") | mail -s "Change permsec `hostname`" $email fi

This script is checking all files in folders from “checkdir” variable, calculating their MD5 hashes, writing results to file “filedb” and compares it with results of last checking by “diff” program. If differences found then script sending email message to test@iamroot.ru. If results are identical then nothing hapens. Script needs to be launched periodically by “cron” program.