solarisk
Mostly unix/linux/infra/infosec ...
Friday, December 20, 2024
Sunday, September 01, 2013
Saturday, August 31, 2013
[freebsd] vector callback for Xen PVHVM
RT @freebsdhelp: #FreeBSD #HEAD "Implement vector callback for #Xen PVHVM and unify event channels" http://ow.ly/orcWN Thanks @spectralogic!
Friday, April 20, 2012
Thursday, April 19, 2012
Monday, April 16, 2012
Friday, April 06, 2012
Thursday, April 05, 2012
Wednesday, March 21, 2012
Tuesday, March 20, 2012
Query Apache logfiles via SQL
ASQL is a simple console shell which allows you to run SQL queries against an Apache logfile, something that can be very useful - especially at getting information which is not easily available via static logfile analysers.
Using FreeNAS With VirtualBox To Create A True Personal Storage Cloud?
Besides using third party online cloud services such as Dropbox or Pogoplug, you can always set up your own personal cloud at home.
Cracking Facebook With Blackbuntu
This educational video shows a method to bruteforce facebook accounts without getting banned from the server, instead of attacking the http protocol we will use the xmpp chat protocol, with this principle it can be used to crack different services such as gmail, hotmail live, etc.
Monday, March 19, 2012
Sunday, March 18, 2012
Sunday, August 27, 2006
Funky
http://www.justlinux.com/forum/showthread.php?threadid=143973
http://en.wikipedia.org/wiki/Bill_Joy
http://www.levenez.com/unix/history.html - INCREDIBLE
http://en.wikipedia.org/wiki/Bill_Joy
http://www.levenez.com/unix/history.html - INCREDIBLE
Security
Search Solaris from Cert
Search Solaris from SecurityFocus
http://www.frsirt.com/english/vendor/3420
http://packetstormsecurity.org/
http://www.openssh.org/faq.html
http://sabernet.home.comcast.net/papers/Solaris.html
Search Solaris from SecurityFocus
http://www.frsirt.com/english/vendor/3420
http://packetstormsecurity.org/
http://www.openssh.org/faq.html
http://sabernet.home.comcast.net/papers/Solaris.html
Jumpstart
http://www.sun.com/blueprints/browsesubject.html#jumpstart
Solaris Security Toolkit
http://www.amorin.org/professional/jumpstart.php
About 85 results found for "jumpstart" in the "Support - BigAdmin"
http://www.unix.com/showthread.php?t=18074
http://www.deer-run.com/~hal/jumpstart/Jumpstart.pdf
http://www.pimpworks.org/sun/jumpstart-howto.html
Solaris Security Toolkit
http://www.amorin.org/professional/jumpstart.php
About 85 results found for "jumpstart" in the "Support - BigAdmin"
http://www.unix.com/showthread.php?t=18074
http://www.deer-run.com/~hal/jumpstart/Jumpstart.pdf
http://www.pimpworks.org/sun/jumpstart-howto.html
Virtualization
http://www.cl.cam.ac.uk/Research/SRG/netos/xen/index.html
http://www.opensolaris.org/os/community/xen/
http://www.opensolaris.org/os/project/crossbow/
http://video.google.com/videoplay?docid=-3212004045467750220&q=xen
http://www.opensolaris.org/os/community/xen/
http://www.opensolaris.org/os/project/crossbow/
http://video.google.com/videoplay?docid=-3212004045467750220&q=xen
Sun familia
http://sunsolve.sun.com/pub-cgi/show.pl?target=home
http://www.sun.com/blueprints
http://www.sun.com/bigadmin/home/index.html
http://www.sunsource.net
http://www.blastwave.org/
http://www.sunfreeware.com
ftp://ftp.cs.toronto.edu/pub/jdd/sunmanagers/faq.html
http://sysunconfig.net/unixtips/solaris.html
http://www.joho.com/sun/ewtoc.html
http://www.mreriksson.net/faqs/solaris8/
http://www.science.uva.nl/pub/solaris/solaris2/
about 797 from adminschoice.com for solaris
http://www.sunhelp.org/
http://www.sun.drydog.com/
http://www.sun.com/blueprints
http://www.sun.com/bigadmin/home/index.html
http://www.sunsource.net
http://www.blastwave.org/
http://www.sunfreeware.com
ftp://ftp.cs.toronto.edu/pub/jdd/sunmanagers/faq.html
http://sysunconfig.net/unixtips/solaris.html
http://www.joho.com/sun/ewtoc.html
http://www.mreriksson.net/faqs/solaris8/
http://www.science.uva.nl/pub/solaris/solaris2/
about 797 from adminschoice.com for solaris
http://www.sunhelp.org/
http://www.sun.drydog.com/
Commands
- HD info(vendor, RPM, capacity) :
iostat -E
- Display the number of used and free i-nodes :
df -F ufs -o i
- Printing disk geometry and partition info :
prtvtoc /dev/rdsk/
- Display processes with the highest CPU utilization :
ps -eo pid,pcpu,args | sort +1n
- Display processes with the highest memory usage :
ps -eo pid,vsz,args | sort +1n
- Checking whether it's running in 32-bit mode or 64-bit mode :
isainfo -v
- Verifying a route to a specified network :
route -n get xxx.yyy.zzz.0
- print the version of OBP :
prtconf -V ; /usr/platform/`uname -i`/sbin/prtdiag -v | grep OBP ; {2} ok .version
- system configuration :
sysdef ; /usr/platform/`uname -i`/sbin/prtdiag
- Display the device list (and drivers attached to devices) :
prtconf -D
- processor type, speed :
psrinfo -v
- patch applied on the system :
showrev -p
- exported file system on NFS server :
showmount -e NFS_SERVER
- display current run level :
who -r
- Find out a package which a file belongs to :
pkgchk -l -p /usr/lib/sendmail
- locate all files owned by a user:
find / -user UID
- locate and remove all files owned by the user:
find / -user UID -exec rm {} \;
- To find offending user files or any file with setuid permissions and display their full path names:
find / -perm -4000
- To find files with setgid permissions and display their full path names:
find / -perm -2000
- To find directories with sticky bit permissions and display their full path names:
find / -type d -perm -1000
iostat -E
- Display the number of used and free i-nodes :
df -F ufs -o i
- Printing disk geometry and partition info :
prtvtoc /dev/rdsk/
- Display processes with the highest CPU utilization :
ps -eo pid,pcpu,args | sort +1n
- Display processes with the highest memory usage :
ps -eo pid,vsz,args | sort +1n
- Checking whether it's running in 32-bit mode or 64-bit mode :
isainfo -v
- Verifying a route to a specified network :
route -n get xxx.yyy.zzz.0
- print the version of OBP :
prtconf -V ; /usr/platform/`uname -i`/sbin/prtdiag -v | grep OBP ; {2} ok .version
- system configuration :
sysdef ; /usr/platform/`uname -i`/sbin/prtdiag
- Display the device list (and drivers attached to devices) :
prtconf -D
- processor type, speed :
psrinfo -v
- patch applied on the system :
showrev -p
- exported file system on NFS server :
showmount -e NFS_SERVER
- display current run level :
who -r
- Find out a package which a file belongs to :
pkgchk -l -p /usr/lib/sendmail
- locate all files owned by a user:
find / -user UID
- locate and remove all files owned by the user:
find / -user UID -exec rm {} \;
- To find offending user files or any file with setuid permissions and display their full path names:
find / -perm -4000
- To find files with setgid permissions and display their full path names:
find / -perm -2000
- To find directories with sticky bit permissions and display their full path names:
find / -type d -perm -1000
Subscribe to:
Posts (Atom)