|
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#
THE SCRIPTING GAMES HAVE STARTED AND SOME TEASERS
2008-02-16 20:07:00 The Scripting games hit started, and I module move bill my anwers, aforementioned as terminal 2 eld on my blog, this assemblage I module also place digit of my solutions on the Technet Script Center,. I got Event 10 BlackJack :. As I hit the terminal event, …
By: Online casinos
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
Latest Firefox with fix for Cross Site Scripting (XSS)
2008-02-12 06:36:00 Cross Site Scripting was one of the major security threat faced by internet users. This security vulnerability may be exploited to allow code injection by malicious web users into the web pages... read more at >> http://skvnet.blogspot.com
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.
2008 WINTER SCRIPTING GAMES: INVITED TO SUBMIT A SOLUTION
2008-02-08 13:44:00 As conception of the 2008 Winter Scripting Games, I hit been asked to wage a resolution to an circumstance aweigh of the “official” resolution existence posted. My solution, along with comments, etc., module be posted on the place when the resolution to the …
By: Online casinos
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
Dating Site Solution
2008-01-25 01:52:00 Dating Site Solution 3.1 Powerful dating script. Unique interface which can be changed anyway you like. Script package offers chat, forum, galleries, different modes of membership and other options - it all allow you to offer your members a truly engaging online dating experience. Easy-to-use administration area. Features include large number of ... SHARETHIS.addEntry( { title: "Dating Site Solution", url: "http://www.plentyofsoft.com/we-b-developer/dating-site-solutio-n/" } );
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 ...
WEB-ED Webpage and Scripting Editor
2008-01-20 01:14:00 Click to enlarge WEB-ED Webpage and Scripting Editor 5.57 A unique editor with specialized functions for HTML, VBScript, DHTML and CSS, with support for javascript and PHP. Advanced color syntax highlighting and format debugging. Built-in object browser, color picker, color sampler. Toggling, resizable browser window to view current HTML page. Code completion for ... SHARETHIS.addEntry( { title: "WEB-ED Webpage and Scripting Editor", url: "http://www.plentyofsoft.com/we-b-developer/web-ed-webpage-and--scripting-editor/" } );
Dating Pro DEC-2007
2008-01-20 01:12:00 Click to enlarge Dating Pro DEC-2007 If you wish to start your own professional Dating, Networking or Personals site, then DatingPro.com is a way to go. It offers you a ready made professional Dating Script for establishing your own Dating Site at minimum time, cost and effort. Dating Pro is fully customizable and ... SHARETHIS.addEntry( { title: "Dating Pro DEC-2007", url: "http://www.plentyofsoft.com/we-b-developer/dating-pro-dec-2007-/" } );
PG Real Estate Solution JAN-2008
2008-01-20 01:11:00 Click to enlarge PG Real Estate Solution JAN-2008 PG Real Estate - a ready-to-go script for creating a Real Estate Site. It can be easily set to satisfy your demands: on the one hand it can be a site for a separate Realtor or Real Estate Company, on the other hand - it ... SHARETHIS.addEntry( { title: "PG Real Estate Solution JAN-2008", url: "http://www.plentyofsoft.com/we-b-developer/pg-real-estate-solu-tion-jan-2008/" } );
Perl Scripting Tool
2008-01-20 01:07:00 Click to enlarge Perl Scripting Tool 3.0 Perl Scripting Tool features include: the ability to right click on your script and get a menu of the most useful functions; the ability to find matching brackets and go to line numbers; a built-In HTM2PERL utility; the ability to parse HTML; a subroutine library; an ... SHARETHIS.addEntry( { title: "Perl Scripting Tool", url: "http://www.plentyofsoft.com/we-b-developer/perl-scripting-tool-/" } );
XLnow OnScript
2008-01-20 01:02:00 Click to enlarge XLnow OnScript 2.1.568 XLnow OnScript is an integrated tool for writing, maintaining and running scripts on Microsoft Windows desktop and server systems. With OnScript you can: Post from: Plenty of Software: Free downloads center SHARETHIS.addEntry( { title: "XLnow OnScript", url: "http://www.plentyofsoft.com/we-b-developer/xlnow-onscript/" } );
AdvancED DOM Scripting: Dynamic Web Design Techniques
2008-01-19 05:38:00 Jeffrey Sambells, Aaron Gustafson , “AdvancED DOM Scripting: Dynamic Web Design Techniques”friends of ED (July 23, 2007) | ISBN: 1590598563 | 570 pages | PDF | 12 Mb (+15 Mb - Source Code) As a web designer or developer, you know how powerful DOM scripting is for enhancing web pages and applications, adding dynamic functionality and improving the user experience. You’ve got a reasonable understanding of JavaScript and the DOM, but now you want to take your skills further. This book is all you need to do soit shows you how to add essential functionality to your web pages, such as on the fly layout and style changes, interface personalization, maps and search using APIs, visual effects using JavaScript libraries, and much more. Includes a quick recap of the basics, for reference purposes.Packed with real world JavaScript solutions from beginning to endWritten by “Beginning Google Maps” author Jeffrey Sambells, and includes a case study by JavaScr...
CodeThatCalendar
2008-01-13 01:15:00 Click to enlarge CodeThatCalendar 3.2.1 CodeThatCalendar enables you easily add the visual way to select the date/timepicker to your form or page. The following positions and features are supported by the Calendar script: SHARETHIS.addEntry( { title: "CodeThatCalendar", url: "http://www.plentyofsoft.com/we-b-developer/codethatcalendar/"- } );
Bitrix Site Manager
2008-01-13 01:10:00 Click to enlarge Bitrix Site Manager 6.0 Bitrix Site Manager â?? a comprehensive content management suite for maintaining web sites. SHARETHIS.addEntry( { title: "Bitrix Site Manager", url: "http://www.plentyofsoft.com/we-b-developer/bitrix-site-manager-/" } );
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), ...
Search Engine Builder Professional
2007-12-27 14:31:00 Click to enlarge Search Engine Builder Professional 2.44 Many visitors to your website are usually looking for specific information. If they have to take too much time to find what they want, you’ll lose some of them.
Search Engine Builder Standard
2007-12-27 14:28:00 Click to enlarge Search Engine Builder Standard 2.72 Many visitors to your website are usually looking for specific information. If they have to take too much time to find what they want, you’ll lose some of them.
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...
Firefox 2.0 users get cross-scripting fix
2007-11-27 21:33:00 Firefox users have been given a new security update (http://www.mozilla.org/project-s/security/known-vulnerabilitie-s.html) which fixes a widely publicised flaw in the open-source browser. Mozilla's 2.0.0.10 update fixes a handful of memory corruption flaws that crash Firefox, and a cross-site request forgery flaw that could give attackers a way to get unauthorised access...
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. (more...)
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
|



