Jump to content
xisto Community

k221405241470

Members
  • Content Count

    164
  • Joined

  • Last visited

Everything posted by k221405241470

  1. From SecurityFocus http://forums.xisto.com/no_longer_exists/ There is a _New_ exploit which affects the MSHTA (Microsoft HTML Application Host), using a simple program it's possible to create file from a *.hta with a _strange_ extenstion(*.foo *.ghgh *.asd) and this file will be executed by the MSHTA so if u put some malicious Vbs or JS in the *.hta the risk is very high.... http://imp.ovh.net/fr/ this is the source of the program to create the malicious files I've tested it on Xp Sp1 and Xp SP2 and both system were affected maybe also in the previous version of MSHTA there is this problem 'njoy
  2. I've heard thta SuSE, Debian and the new Mandriva (-.-) are developing a solution like this to expand their "domains" but i think there are already a deal from SuSE but you have to order your laptop but i'm not sure....;/
  3. Nod32 is absolutly the best and only in my opinion https://www.virusbulletin.com/testing/vb100/ I've tried Avast and AvG but both weren't so good as NOd32 for example AVg don't know at all the RXBot,Urxbot or ForBot... Avast i remember can clean up only ForBot and these kind of bot/trojan are more diffucult to stop when you are infected cause it almost impossible to find the owner... The best way it's LINUX, for server, for desktop on LAptop...i've heard that someone is developing a new generation of trojan which can also infect LinuxBox but it's still a joke i hope
  4. it's impossibile to predict the evolution of programming languages because everyday many programmers create a new sequence of code or a new kernel_module and then...i think all these "Sources" are an evolution because you may be the first who write it, the first who creates a link between two peripherals with a new ASM programms...not only the popular script and the popular programms help the evolution of a language..:)And then you have to study many languages and not only one, so...you can decide to programm with a different language if you need some specific features or performance...ex...Don't try to program a web Spider in Java 'njoy
  5. I agree with qwijibow, OGG is better than Mp3 but it's not so popular, I use mp3 for music and it's quite small(I always use 192 Kbs VBR or 320 Kbs) and the sound is very good, somewhere 'ive read better than a wav,I use OGG only under linux instead of the Wav for the application sound and this is good too, I hate Wma...and the fact that many person use Window Media Player to rip cd... Free Software R0cks
  6. There is also Teleport ( http://www.tenmax.com/teleport/pro/home.htm shareware) this software permits to naviagate an entire web site from you HDD, you can set some option so you can download also some pages linked outside the main site... 'njoy
  7. Hi, When I installed Iptables on my linux Box the first time I noticed that the Iptables-save and Iptables-restore commands were totaly useless, infact you need to redirect the output and input every time you use it..So i decided to create a very simple script that provides this functionality.... before starting you need to know how to add a rules in iptables and in general using iptables, if you just install iptables these 2 rules close all connections incoming on the mySQL & SSH ports, so only from localhost you can use this features(SSH in localhost is useless..but for an home workstation..) # iptables -A INPUT -s ! 127.0.0.1 -p tcp -m tcp --dport 3306 -j DROP# iptables -A INPUT -s ! 127.0.0.1 -p tcp -m tcp --dport 22 -j DROP# iptables -L # iptables-save > ~/iptables/bakupwe make a backup of the current settings so if something goes wrong we don't lose time to fixiptables-adm #!/bin/shecho "Iptables Admin v0.3.0";sc=$1prefix=/usr/sbin #iptables binaries directory. /etc/iptables/iptables.conf #iptables-adm settings file pathrules=( "${configfilerules[@]}" )if [ -n "$2" ]thenif [ `basename $2` = $2 ]thenpath=$PWD/$2elsepath=$2;fielsepath=$configfilepathficase $sc in"--help" | "-h" | "")echo "Coder: k22 ---- Released under GNU/GPL license";echo "Usage: ./iptables-adm COMMAND";echo "Commands:";echo "-s --save [FILE] Save current settings of iptables to FILE or default file";echo "-r --restore [FILE] Restore saved settings of iptables";echo "-d --default Restore default settings of the config file";echo "-l --last Restore last settings of iptables(Saved on shutdown)";echo "-h --help Print this help menu";echo "Boot/Shutdown Option:";echo "start Restore saved settings of iptables";echo "stop Save last settings of iptables";;;"--restore" | "-r" | "start" | "-l" | "--last")echo "Restoring Iptables...";[ "$sc" == "-l" ] || [ "$sc" == "--last" ] && path=$configlastif $prefix/iptables-restore $paththenecho "Iptables restored from _ $path _";elseecho "Iptables restoring fail";fi;;"--save" | "-s" | "stop")echo "Saving curent settings...";[ "$sc" == "stop" ] && path=$configlastif [ ! -e "$path" ]thenecho "I'll make a new config file in _ $path _";elseecho "I have found and old settings file in _ $path _";fiif $prefix/iptables-save > $path thenecho "Iptables settings saved in _ $path _";elseecho "Iptables settings have not been saved in _ $path _";fi;;"--default" | "-d")echo "Restoring default setting...";if [ -n "${rules[0]}" ] thennum=0while [ "$num" -lt "${#rules[@]}" ]doif $prefix/iptables ${rules[$num]}thennum=$(($num+1))echo "Iptables default setting $num setted";else exitfidoneelseecho "Iptables default settings have not been found";fi;;esacyou have to place this file in /usr/local/sbin/ and in the /etc/rc.d/ so you can use it during the boot and when you're logged (DO NOT USE ln -s ,I've seen on some computers problems during the boot when a file in rc.d is a link to another one, i don't know why..so it's better to have 2 files)now we need the config file Config File ###################################### #Iptables-adm config file by k22 ######## ##################################### #If you insert file or any rules these will append to the default config# configfilepath="/etc/sysconfig/iptables-saved.conf" configlast="/etc/sysconfig/iptables-last.conf" configfilerules=("-A INPUT -s ! 127.0.0.1 -p tcp -m tcp --dport 22 -j DROP" "-A INPUT -s ! 127.0.0.1 -p tcp -m tcp --dport 3306 -j DROP")you've to place the file in /etc/iptables/iptables.conf or if you change directory change also the path in the script This file provides many information, first the name of the future file of the iptables settings /etc/sysconfig/iptables-saved.conf and then a bakup file /etc/sysconfig/iptables-last.conf in fact every time you shutdown the computer this script will save the last configuration in this file so if you forget to save you don't lose the work... now you have to select during which runlevel you need iptables with a sysv boot system you've to do these passages # cd /etc/rc.d/rc.x //(where x is the runlevel selected)# ln -s ../iptables-adm SXXiptables-adm //(where XX is number of the posistion you want to start it, it MUST be started after network and after iptables so 16-20 is enough for the most part of the computer)# ln -s ../iptables-adm KYYiptables-adm //(as the last one but we decide when activate this script during the shutdown, 04-05 is ok)now this script will restore the iptables settings each boot, now we've to save the setting in the default config file # iptables-adm -s now just reboot your machine and your settings will be restored I hope this script is useful to someone other commands that cna be used are: -l to restore the last config, saved during shutdown -s filename to save on a specific file -r filename to restore from a specfic file I hope someone finds this file useful in my next tutorial I'll explain how to fix some bugs and how to install an old project that permits to see Iptables log, directly from web, and some addons that I've created for this project
  8. :| o my god? how the hell is it possibile?1> it's impossibile, nobody knows my pass, i'm almost sure 2>:| i didn't do it...:| 3>I had a very very low traffic maybe 10 visits/day :'( i had many files on the space, but is it possibile to know something more?from log or similar? i hope that nobody steals my pass but it's impossiblel :'(
  9. Go to http://php.net/ as Avalon saud and start read all the documents you can..then create some basic scripts and donwload a nukk(php-nuke for example) reading the source of the nuke you can understand better the OO(Object oriented) programming, in fact i think on the site(php.net) they don't explain very well this kind of approach to the programming..'njoy
  10. I use Adobe Premiere 1.5 Pro and it's very cool and easy to use..like all the Adobe's applications is very simple to undertand and in less than one month you can learn almost everything about this program, if you're interested in Video Editing try also Adobe After Effects v6.5 Pro, it's a very useful program too, with some plugins you can make special effects and modify your film totaly...this program is a bit more difficult than Premiere..because you need a lot of practise with the plugins...Both the program aren't free but if you can have a special license, as student for example..it's not very very expensive....but it's not cheap too..
  11. :? I realy don't know what happen, it's more than 3 days and nothing change?do you have any problems with the Server or the accounts?Thanks for any answer
  12. I learned it reading the source of pages on internet and then during the writing of my first page i used Front-page and so i discoveried DHTML an JS, in internet you can find many guides but nothing is better than Auto-learning
  13. Quanta and Kwriteor when I'm on window Dreamweaver or PhpExpertEditor or Perl Editor, it's depends..of wich lang i'm using..simple HTML I can use also NotePad or phpExperteditor with the syntax highlighting option actives...
  14. 17" LCD monitor :)if you want you can reduce the dimension of a table of the page or something else using PHP or JS or any other language, you need a function that takes the resolution of the browser and so changes the dimension of object in the page
  15. Free Mysql server? http://dev.mysql.com/ and then you install it on your compuiter or a remote one Free Mysql db? http://forums.xisto.com/no_longer_exists/ (no forums allowed) it's very fast but for test, it's free Free Mysql Hosting? here at Xisto you can use DB mysql and PostegreSQL, but Lycos too permits that if you were seeking a forum hosting http://forums.xisto.com/no_longer_exists/ http://www.freeforumzone.com/home.aspx
  16. HI, I got ym account suspended and then after gain all the credits i received the mail that my account was UN-SUSPENDED, but now after 20 hours is still down, do you know if i must do something else to un-suspend my account?thanks in advance
  17. Do you know if there is any program to create Fractal from a formula or from an expression? Fractals are images create from math expresions and i think they are realy amazing, when you think that you're looking in a formula like this... http://exoteric.roach.org/frax/index.html If you know any applications to make these awesome images...please answer i'ts a long time i'm looking forward it....:/
  18. Altervista.org Is in italian but you have a lot of space almost 1gb, ftp acces and mysql Db, but you need a lot of visit to pay these services with a virtual money(AlterCent) you can earn with sponsors provided by Alervista:)
  19. or by google , lol I think that google has interest stealing information but it's impossible to store all the information since day 1 in a Db, they have a very large cache on their server but if eveyr day in all the world there are 200 milions of search with google in less than 1 years the information would be so much that IMHO there aren't enough hdd space....may be they keep the mail for a while but I don't think they can steal and recycle everything we receive and we send...I hope...
  20. it doesn't work, i insert my name but after the reboot nothing happen, but what is the utily of insert the name on the desktop?
  21. I use google and untill now I've never had problems,only once I've got a problem on my web site, infact after 30 passages of google spider they hadn't cached my site yet, I wait for 5 months and only now my site is cached on google, i don't the reason of this but I think that the traffic isn't enough and I don't update too frequently..
  22. I don't know if it's a fake or not, but the Vatican have created many fake, an example is the "Constantin Donation", a document that gives to the vatican the land around Rome, but we discoveried that it's was a fake to cover the real donation of this land by a Longobard king, the Vatican needed to prove its theory during the Medieval Age so many reliques are only a piace of wood from the roman age, I've never seen the Shroud but I know that 2 years ago 2 fireman were killed during a fire in the church, i hope they didn't die for a fake.... :/
  23. Dreamweaver for a "professional look"?Dreamweaver is useful but only when you must finish a work very quickly and you are far from the end, when you have to create and administrate a big site, that receives a lot of visits and need update you have to write yourself the code and know very well how to write HTML in each editor, so when you need to update or fix a bug you can use a simple editor like VI that can be reached via ssh and remote login...and FrontPage generates a code worse than my mother's one....
  24. This game is only 15 mb but it's the most hilarious game i've never seen, you can drive car like the police one, but it's so stupid that eveything seems happen in a world of LEGO or a fantastic one..it's difficutl to explain it seems a stupid game..but...it's so funny that you cannot stop to play..lol http://forums.xisto.com/no_longer_exists/
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.