|
PHP Script To Monitor FTP Directory Changes
2008-06-05 13:04:00 I recently had the need to be able to monitor a directory on an FTP server for changes and to then be notified of those changes. I’ve been working a lot in PHP lately so I decided to use that to implement my script. FTP Access FTP (file transfer protocol) access in PHP is a breeze. It’s ...SHARETHIS.addEntry({ title: "PHP Script To Monitor FTP Directory Changes", url: "http://www.franzone.com/2008/0-6/05/php-script-to-monitor-ftp--directory-changes/" });
How to save parameter value to other parameter in LoadRunner?
2008-06-01 11:36:00 One my reader asked me - "How to save parameter value to other parameter in LoadRunner?". OK, there is a simple solution.To save parameter value to other parameter you have to:Evaluate value of initial parameterUse lr_eval_string LoadRunner function.Save the evaluated string to a second parameterUse lr_save_string LoadRunner function.Please, check the following code:// save string value to initial parameterlr_save_string("some string value", "prmStr1");lr_output_message(lr-_eval_string("Value of prmStr1: {prmStr1}"));// save the evaluated value to second parameterlr_save_string(lr_eval-_string("{prmStr1}"), "prmStr2");lr_output_message(lr-_eval_string("Value of prmStr2: {prmStr2}"));Let's execute this code and check the result:(click the image to enlarge it)As you can see, both parameters (prmStr1 & prmStr2) have the same values - "some string value".So, we assigned the parameter value to other parameter successfully.Related articles:How to perform basic operations on LoadRunner p...
QTP Descriptive programming - processing images
2008-05-28 19:29:00 Imagine a practical situation with QuickTest Professional (QTP).There are several images on a web page. You need to:get the number of all images on the pageprocess each image (for example, get its location)Do you know how to do that? If not, do not sorrow :) I'm going to show and explain how to do that.Also, I'm going to explain QTP Descriptive Programming concepts.Let's start with Google Book Search page:I have recorded simple QTP script which:uses http://books.google.com as initial URLclicks 'Google Book Search' image:So, the recorded QTP script is:Browser("Google Book Search").Page("Google Book Search").Image("Google Book Search").ClickWhy have I recorded this script?Because it will help us to investigate QTP Object Repository (OR) and properties of image.Let's open Object Repository:And then we check image's properties saved in Object Repository:(click the image to enlarge it)Using "html tag" property and its value "IMG", we can create general description for all images o...
Automated testing without automated testing tools
2008-05-17 22:23:00 How many automated testing tools exist in the world?Hm... I think, hundreds - Selenium, QuickTest Professional, SilkTest, Jmeter, LoadRunner, STAF, Watir, Canoo WebTest, and so on...Is is possible to perform an automated testing without automated testing tools? Sure!I will show how to perform automated testing of web applications on Internet Explorer (IE) browser. The main advantage is that these tests can be run on any Windows computer without any additional sofware required.Let's see steps of sample test:Open IE and navigate to google.com:Set value of edit box to 'Easy way to automate testing':Click 'Google Search' button:If a search results page contains a link to this blog (http://motevich.blogspot.com)- then click this link:Last step is to close the IE windowI've automated this test with an instance of the InternetExplorer object.Details info about InternetExplorer object is located here.I hope, the source code of my test is clean and understandable. Here it is:Option&nbs...
Sun looks beyond MARS for NetBeans scripting
2008-05-05 13:42:00 PHP is the latest language getting the NetBeans treatment, with a PHP version of Sun Microsystems' open-source environment hitting early access today. Built on the same generic scripting framework that Sun used for Ruby, the NetBeans PHP bundle includes project management tools with refactoring and code completion to ease deployment. Sun hopes these features will, finally, wean users off Emacs and Bill Joy's vi.
By: Server Tales
Sun looks beyond MARS for NetBeans scripting
2008-05-05 13:42:00 PHP is the latest language getting the NetBeans treatment, with a PHP version of Sun Microsystems' open-source environment hitting early access today. Built on the same generic scripting framework that Sun used for Ruby, the NetBeans PHP bundle includes project management tools with refactoring and code completion to ease deployment. Sun hopes these features will, finally, wean users off Emacs and Bill Joy's vi.
By: Server Tales
Cross-site Scripting (XSS)
2008-04-15 19:58:00 Two days back, my shoutbox was hacked :). I was not aware that people are actually visiting this, which I made long back to have similar thing for Ethos in june, 2005. After that i haven’t updated the code and many things were left in between. What actually happened: Cross Site Scripting, when we want ...
By: Burad's Blog
Cross-site Scripting (XSS)
2008-04-15 19:58:00 Two days back, my shoutbox was hacked :). I was not aware that people are actually visiting this, which I made long back to have similar thing for Ethos in june, 2005. After that i haven’t updated the code and many things were left in between. What actually happened: Cross Site Scripting, when we want ...
By: Burad's Blog
How to run QTP test from command line
2008-04-15 13:30:00 Do you run your QTP tests suit manually?What about running them on the schedule, for example nightly testing?I will show the way how to do that - i.e. how to run QTP tests from command line.Using that approach, you can execute your QTP tests on the schedule.How to run QTP test from command line - QTP video tutorialThis is a script, which runs QTP tests (from video tutorial):Dim qtApp 'As QuickTest.Application ' Declare the Application object variableDim qtTest 'As QuickTest.Test ' Declare a Test object variableSet qtApp = CreateObject("QuickTest.Applica-tion") ' Create the Application objectqtApp.Launch ' Start QuickTestqtApp.Visible = True ' Make the QuickTest application visibleqtApp.Open "C:Tempsimple_test", True ' Open the test in read-only mode' set run settings for the testSet qtTest = qtApp.TestqtTest.Run ' Run the testWScript.StdOut.Write "Status is:" & qtTest.LastRunResults.Status ' Check the results of the test runqtTest.Close ' Close the testSet qtResults...
Scripting Languages: What are they?
2008-04-14 14:53:00 Scripting languages are a type of programming language that controls a specific software application. One example is JavaScript, that controls slight behaviour of a Web browser. For example, JavaScript in a particular fashion is an event-driven scripting language, so in this way, upon an event taking place, JavaScript ?springs into action?. One JavaScript code could ...
New Game Scripting Language
2008-03-17 17:07:00 There is a new scripting language, called Ruby Game Scripting System, to rapidly develop RPG-style titles.
Active Scripting Fast Disable
2008-03-13 00:00:00 Active Scripting Fast Disable - Internet Explorerapos;s Active Scripting "feature" is responsible for popup windows, scrolling status bar text, security holes, and other annoyances. Unfortunately, some websites require this technology for basic navigation, so permanently disabling Active Scripting is an impractical solution. The "Enable/Disable Active Scripting" option is normally buried deep in the Windows Control Panel, and changing it repeatedly i
By: Shareware
Develop Custom File Upload article on www.lottext.com
2008-03-04 21:15:00 Siccolo development article on www.lottext.com - Develop Custom File Upload with Javascript and Scripting.FileSystemObject
Create Custom File Upload - .NET Software Development - Javascript and Scri
2008-03-04 20:49:00 How to create Custom File Upload - .NET Software Development - Javascript and Scripting.FileSystemObject - a new Siccolo development article - Custom File Upload with Javascript and Scripting.FileSystemObject, Web Service/ASP.NET and C#
Scripting Scribus
2008-02-14 14:24:00 Have you ever said, "This program is pretty nice, but I wish it would ..."? For applications that offer the capability, scripting gives users the ability to customize, extend, and tailor a program to meet their needs. Scribus, a free page layout program that runs on Linux (and Mac OS and Windows) uses the Python programming language for user scripting. Python scripting in Scribus can drastically improve your work flow, and it's relatively easy for beginners to not only use scripts, but also write them.
By: Server Tales
Skype Cross Zone Scripting Vulnerability Fix Released
2008-02-10 18:40:00 Skype has issued a fix for the recent Skype flaw, discovered by Aviv Raff. The stems from the fact that Skype uses Internet Explorer's Web control to render internal and external HTML pages.SKYPE-SB/2008-001: Skype Cross Zone Scripting VulnerabilityBulletin title: Skype Cross Zone Scripting VulnerabilityBulletin ID: SKYPE-SB/2008-001Bulletin status: FINALDate of announcement: 2008-02-05 14:00:00 +0000Products affected: Skype for WindowsVulnerability type: Code injectionCVE references: Risk assessment: HIGHCVSS base score: 10.0 (AV:N/AC:L/Au:N/C:C/I:C/A:C)tag-: skype, skype Vulnerability, Skype Cross Zone Scripting VulnerabilityCopyright © 2005-2008 SnapVoip, Published by snapvoip.blogspot.com. Proper link backs are needed for republishing.
Cross Site Scripting - WTF
2008-01-26 08:45:00 Ok so website hackers use this thing called cross site scripting or XSS to hack websiteHere is a cheat sheet
Skype Cross-zone Scripting Vulnerability Found
2008-01-21 16:05:00 Security researcher Aviv Raff has discovered and demonstrated a flaw within Skype that allows malicious code to execute when the software embeds video into chat. The problem is caused by Skype’s web control. The program uses Internet Explorer to render internal and external HTML, but does so using “Local Zone” security settings. Full information on ...
Accelerated DOM Scripting with Ajax, APIs, and Libraries (Accelerated) (Pap
2008-01-06 04:01:00 Accelerated DOM Scripting with Ajax, APIs, and Libraries (Accelerated) (Paperback)By Jonathan Snook Buy new: $39.99$26.3934 utilised and new from $18.95 Customer Rating: First tagged “javascript” by J. Hill Customer tags: ajax(2), dom(2), ...
Cross site scripting in php
2007-12-24 11:32:00 The media has helped make cross-site scripting (XSS) a familiar term, and the attention is deserved. It is one of the most common security vulnerabilities in web applications, and many popular open source PHP applications suffer from constant XSS vulnerabilities. XSS attacks have the following characteristics: Exploit the trust a user has for a particular site.Users don’t necessarily have a high ...
JavaFX Script: Dynamic Java Scripting for Rich Internet/Client-side Applica
2007-12-10 17:12:00 James L. Weaver, ?JavaFX Script: Dynamic Java Scripting for Rich Internet/Client-side Applications?Publisher: Apress | Number Of Pages: 200 | 2007-10-29 | ISBN: 1590599454 JavaFX Script makes it easy for developers to quickly develop high-quality UI-intensive applications very quickly. As JavaFX Script: Dynamic Java Scripting for Rich Internet/Client-side Applications demonstrates, developers can develop Rich Internet Applications and rich client-side user interfaces quickly and easily with this potential replacement for Ajax and perhaps even ActionScript and other scripting found in Flash. This firstPress book on JavaFX Scriptcovers the following topics:* The fundamentals of the JavaFX suite of technologies and the foundations of JavaFX Script and available tools* How to create a Wordsearch application* How to augment and enhance the Wordsearch application after learning more advanced JavaFX Script features such as classes, objects, UI components, and constructs.What you?ll learn* ...
Cross-site scripting ( xss ) attack by example and prevention in PHP
2007-12-07 18:58:00 What are cross-site scripting (XSS ) Attacks?Cross-site scripting attacks are attacks that target the end user instead of your actual site. Vulnerable web applications that don't check or validate properly incoming data let arbitrary code to run on a client computer (such as Javascript). The end result can be anything from stealing cookie data or redirecting to a different site, to embedding a browser exploit on a page. Anything that can be done with Javascript (a lot!).Example :Let us suppose that there is a comment form in the Michael's website of a section like photo gallary or article. He created a feature that let his viewers to comment on his photos or article by submitting a form. And he doesnot have much validation in this comment form.Now Sam (inturder) visits the Michael's website and he's jealous of Michael's website traffic and wants to steal some of his website's traffic. Then he can insert the follow code to his comment form Hi Michael, very gud job, keep it up! ...
Cross-site scripting ( xss ) attack by example and prevention in PHP
2007-12-07 18:58:00 What are cross-site scripting (XSS ) Attacks? Cross-site scripting attacks are attacks that target the end user instead of your actual site. Vulnerable web applications that don’t check or validate properly incoming data let arbitrary code to run on a client computer (such as Javascript). The end result can be anything from stealing cookie data or ...
Mastering UNIX Shell Scripting (Paperback)
2007-12-06 04:12:00 Mastering UNIX Shell Scripting (Paperback)By Randal K. Michael Buy new: $45.00$29.7025 utilised and new from $15.00 Customer Rating: First tagged “linux” by Alan Olsen Customer tags: unix programming(3), korn shell, aix, solaris, ...
Advisory: Cross Site Scripting in CiscoWorks
2007-12-05 15:10:00 Summary Name: Cross Site Scripting in CiscoWorks Release Date: 05 December 2007 Reference: LSD001-2007 Discover: Dave Lewis Vendor: Cisco Systems Affected: CiscoWorks version 2.6 (as tested) All prior builds are affected Risk: Medium Status: Published (Vendor Confirmed, Patch Available) Description The initial CiscoWorks login page is susceptible to XSS attack. Impact: attackers could execute XSS attacks that can harvest session cookies and username/passwords. TimeLine Discovered: 20 August 2007 Reported: 24 September 2007 Fixed: 5 November 2007 Patch Release: 5 December 2007 Published: 5 December 2007 Technical Details The application allows users to perform certain actions via HTTP requests without performing any validity checks to verify the request. Input is not properly sanitised before being returned to the user. This can be exploited to execute arbitrary HTML and script code in a user’s browser session. Fix Information This issue has now been resolved. The patch may...
Accelerated DOM Scripting with Ajax, APIs, and Libraries (Pro) (Paperback)
2007-11-27 04:11:00 Accelerated DOM Scripting with Ajax, APIs, and Libraries (Pro) (Paperback)By Jonathan Snook Buy new: $39.99$26.3934 utilised and new from $18.94 Customer Rating: First tagged “javascript” by J. Hill Customer tags: ajax(2), dom(2), ...
How to execute program on remote computer?
2007-11-14 11:57:00 Several days ago I faced with a simple task - I had to execute program (automated QTP test in my case) on several remote computers.My goal was simple - if I can execute scripts on my computer, then why don't we execute them on remote computers?I think, this task is very interesting and practical, isn't it? :)There was one condition. I tried to use "native" Windows solutions, which do not require additional installed software or libraries. I didn't want to use external soft, files, etc.As a result, I found two solutions. Both of them use WMI:Win32_Process ClassWin32_ScheduledJob ClassI will describe both of them.Running ahead, I will say that I decided in favour of second solution (Win32_ScheduledJob class).Let's explore these solutions, and compare them.For clarity, I will show how to execute simple application (notepad.exe) on remote computer.Execute program on remote computer with Win32_Process ?lassTo create and start new process, I used Create method of the Win32_Proce...
How to execute program on remote computer?
2007-11-14 11:57:00 Several days ago I faced with a simple task - I had to execute program (automated QTP test in my case) on several remote computers.My goal was simple - if I can execute scripts on my computer, then why don't we execute them on remote computers?I think, this task is very interesting and practical, isn't it? :)There was one condition. I tried to use "native" Windows solutions, which do not require additional installed software or libraries. I didn't want to use external soft, files, etc.As a result, I found two solutions. Both of them use WMI:Win32_Process ClassWin32_ScheduledJob ClassI will describe both of them.Running ahead, I will say that I decided in favour of second solution (Win32_ScheduledJob class).Let's explore these solutions, and compare them.For clarity, I will show how to execute simple application (notepad.exe) on remote computer.Execute program on remote computer with Win32_Process ?lassTo create and start new process, I used Create method of the Win32_Proce...
Proper Shell Scripting on Windows Servers with Perl
2007-11-13 21:43:00 Fact: Shell scripting is a must for any serious IT admin managing a server. From automating backups to checking logs and keeping server performance and load in check, scripting is a must. Fact: Shell scripting on Windows sucks. Monad (Microsoft Power Shell) attempts to fix that, but so far the results are mixed. Fact: Shell scripting on Linux and other *nix operating systems is powerful, well-documented, and quite straight-forward. Most people take a look at these three facts, and instantly come to a conclusion.. the wrong conclusion: you can’t properly manage a Windows server because it’s inherently lacking in the shell scripting department. But that’s not true… Because here’s another fact for you: Perl scripts are a drop-in replacement for 99%1 of all shell scripting needs. And another fact: Perl (unlike PHP) runs great (awesome, in fact) on Windows. Now with these two facts in mind, you can now make a proper conclusion: Shell scripting on Windows ...
Mozilla Firefox ?jar:? Protocol Handling Cross-Site Scripting Security Issu
2007-11-10 08:21:00 Description: A security issue has been reported in Mozilla Firefox, which can be exploited by malicious people to conduct cross-site scripting attacks. The problem is that the “jar:” protocol handler does not validate the MIME type of the contents of an archive, which are then executed in the context of the site hosting the archive. This can ...
WordPress Cross-Site Scripting
2007-10-31 01:02:00 Well, it’s time to update your WordPress installation to the latest release (2.3.1) if you haven’t done so yet. Janek Vind has posted a less critical cross-site scripting vulnerability that applies to version <2.3.0. Input passed to the “posts_columns” parameter in wp-admin/edit-post-rows.php is not properly sanitised before being returned to the user. So this can be ...
Unix / Linux Shell Scripting Tutorial
2007-10-24 04:01:00 A Bourne Shell Programming/Scripting Tutorial for learning about using the Unix shell. Learn Linux / Unix shell scripting by example along with the theory. We'll have you mastering Unix shell scripting in no time.---Scripting is very important when administering Linux servers, it will automate most of your repetitive works, this tutorial is very helpful to those who are starting to learn scripting, just like me.read more
By: buhay sysad
LoadRunner VuGen scripting - How to automatically download file from server
2007-10-18 20:21:00 In my previous article, "How to record a file saving, performed by user from browser page?", I shown that user's activities are not recorded by LoadRunner. This is a rule!LoadRunner records file transferring from server and does not record file saving.What to do, if you have to save transferred file to local disk?Continue reading, and you will get the solution :)So, Let's start.You can download file from a server with the web_url function.See an example:Image downloading:web_url("logo.gif",- "URL=ht-tp://www.google.com/intl/en_ALL-/images/logo.gif", &-nbsp; "Resource=1", &-nbsp; "RecContentTyp-e=image/gif", - "Snapshot=t1.inf", &-nbsp; LAST);This code downloads Google's logo image:To save this image as file to local disk, we have to perform these steps:Capture image from server's responseSave captured data to local diskHow to capture image from server's response?Use web_reg_save_param function ...
LoadRunner VuGen scripting - How to automatically download file from server
2007-10-18 20:21:00 In my previous article, "How to record a file saving, performed by user from browser page?", I shown that user's activities are not recorded by LoadRunner. This is a rule!LoadRunner records file transferring from server and does not record file saving.What to do, if you have to save transferred file to local disk?Continue reading, and you will get the solution :)So, Let's start.You can download file from a server with the web_url function.See an example:Image downloading:web_url("logo.gif",- "URL=ht-tp://www.google.com/intl/en_ALL-/images/logo.gif", &-nbsp; "Resource=1", &-nbsp; "RecContentTyp-e=image/gif", - "Snapshot=t1.inf", &-nbsp; LAST);This code downloads Google's logo image:To save this image as file to local disk, we have to perform these steps:Capture image from server's responseSave captured data to local diskHow to capture image from server's response?Use web_reg_save_param function ...
DOMTab - Navigation tabs with CSS and DOMscripting
2007-10-11 07:11:00 What is DOMtab? DOMtab is a JavaScript that turns a list of links connected to content sections into a tab interface. The script removes any “back to top” links in the section and automatically hides all but the first one when the page is loaded. You can use as many tabbed menus on the page as ...
Was IBM.com At Cross-Site Scripting Risk? Yup.
2007-10-02 15:18:00 A little late but, better that than never. I noticed this article from the site Internet News about IBM and potential cross site scripting issues in the RSS feeds for IBM. A Japanese security researcher has alleged that an Atom format syndication feed on IBM.com was at risk from an XSS attack. The flaw would only ...
Cross Site Scripting (XSS)
2007-09-28 05:40:00 Netscape JavaScript dilini taray?c?lar?nda çal??t?r?laca??n? duyurdu?unda, web sunucusu taraf?ndan gönderilen, istemcide çal??tr?labilen kodlar?n güvenlik riskleri yaratabilece?ini gerçekle?tirmi? oldu. Örne?in bir sayfadan çal??t?r?lan script, di?er bir sayfaya ula?abilecekti. Bu yolla kötü niyetli bir web sitesinin, di?er sitelerin bilgilerini çalmas? üzerine engellediler. Bu nedenle baz? politikalar ortaya ç?kt?. Asl?nda bu politika, bunu engellemiyordu, sadece ayn? domain üzerinden ...
By: SYSTEMEDIC
Celtx Scripting and Pre-Production Suite Release Version .995!
2007-09-19 21:27:00 Wow, it’s a day of new releases for all the applications I use. First Adobe releases version 1.2 of Lightroom and now Celtx, what I consider to be one of THE best scripting and pre-production applications out on the market today (and did I mention it’s free?), released a new version, version .995 (they are not even in version 1.0 and it’s amazing!) today with a host of new features and enhancements. If you have not used and/or downloaded Celtx, stop reading this blog entry and go immediately to http://www.celtx.com and get your free copy. They have versions for Windows, Mac and Linux (did I mention it’s free???) At its core, it’s a scripting application (think of it as Final Draft), but it is so much more then that. The new version supports the following types of standard format scripts: Screenplay Stageplay A/V Script Audio Play Text You also have the ability to create story boards, production schedule and in each script yo...
By: Blog Zone
Mozilla Aims At Cross-Site Scripting With FF3
2007-08-23 08:52:00 Web 2.0 has enabled a broad array of Websites to be more engaging for users. It has also enabled a new and now very common attack, namely cross site scripting, commonly referred to as XSS attacks (define). Mozilla is aiming to put an end to XSS attacks in its upcoming Firefox 3 browser. The Alpha 7 ...
Scripting in Java: Languages, Frameworks, and Patterns (Paperback)
2007-08-19 06:15:00 TITLE : Scripting in Java: Languages, Frameworks, and Patterns (Paperback)AUTHOR : by Dejan Bosanac (Author)PUBLISHER : Addison-Wesley Professional publisherISBN : 0321321936EDITION : 1stPUB DATE : August 08, 2007LANGUAGE : EnglishUsing the JavaTM plat...
Nenest aquires scripting capability
2007-06-26 13:28:00 Today Nenest Scripting functionality is released to public. This feature allows users to do some scripting. Some users ask us why not just allow javascript in their form, the answer is security. With general javascript, it's hard to make the form safe and secure.Here is Nenest Script Language manual page: http://www.nenest.com/_doc/scri-ptmanual.aspxHere is a demo form which uses scripts:http://www.nenest.com/y-form/EntryNew.aspx?fid=2219
Casting Words transcripting services
2007-05-23 02:39:00 Casting Words transcripting services are text transcripts made of podcasts and other MP3/MP4 files and are created by humans, not computers. Turnaround time is 3-4 working days and the cost is $0.75 per minute. If you need it done in 24 hours, the rates are $2.50 per minute. Previously: Project ReadOn - free web captions Speche ...
Disable scripting features in email programs
2007-03-26 03:24:00 Disable scripting features in email programs Because many email programs use the same code as web browsers to display HTML, vulnerabilities that affect ActiveX, Java, and JavaScript are often applicable to email as well as web pages. Therefore, in addition to disabling scripting features in web browsers (see "Disable Java, JavaScript, and ActiveX if possible", above), we recommend that users also disable these features in their email programs.
Convert TABs to spaces using shell scripting
2007-03-22 22:52:00 The purpose is simple and clear - to archive a “indentational independence“, when indentation is the same across all platforms, editors and systems. Here is the simple shell script that takes the file as the command line argument and substitute all TABs with spaces: #!/bin/sh # # Script converts TABs to spaces in a given file # if [ ...
By: blog dot kam
AW: Multiple Cross-Site Scripting im vBulletin möglich
2007-02-09 14:34:01 Zitat von Kier I’m somewhat surprised that the reporter does not list the HTML template editor as a potential XSS attack vector too. Perhaps he considers uploading files via FTP to be a means of attack too? Yes, we allow *authenticated administrators* to enter HTML for certain values. This is the intended behaviour, and should the authenticated site administrator wish to include tags in that HTML that is their perogative. (more…) Tags: AW:, Multiple, Cross-Site, Scripting, im, vBulletin, möglich
By: The Blog About
Multiple Cross-Site Scripting im vBulletin möglich
2007-02-07 20:29:02 VBulletin AdminCP Index.PHP Multiple Cross-Site Scripting Vulnerability vBulletin is prone to multiple cross-site scripting vulnerabilities because it fails to sufficiently sanitize user-supplied input data. An attacker could exploit this vulnerability to have arbitrary script code execute in the context of the affected site. This may allow an attacker to steal cookie-based authentication credentials and to launch other attacks. (more…) Tags: Multiple, Cross-Site, Scripting, im, vBulletin, möglich
By: The Blog About
Back to the scripting...
2006-12-02 15:51:05 That little alteration I made to the width of my page made things look pretty awful didn't it? Just a couple of variables was all it took! I decided to stop tinkering with my page code and create a new banner to go in the header, because the placeholder was just that ugly.The new one I've got is pending review, as there are other tricks I can do with The Gimp, and I reckon I can do better. Still, it's a better place holder than before.Let's just hope that my future changes don't require quite so much effort over so little. I doubt the effects in future will be so dramatic.I nice little change I've made is to define the class used by my technorati tags. You will notice my older tags are smaller, because they have had the bold/tiny treatment twice over: once manually, then once again from the class definition.Now I just need to enter the tags into the user script I'm using (with the greasemonkey plug-in for Firefox), hit the "Append Tags" button and voila; the tags auto-format.... |



