473,788 Members | 2,807 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how to store untainted string in perl

8 New Member
Hi friends,

I want to take a description (atleast 50 characters) from the html page using cgi->param and store it into a string variable in perl and pass this string variable to a query. for this i wrote the following code

my $desc = $cgi->param('comment ')

then the error occured

Software error:
Insecure dependency in exec while running with -T switch at /var/www/html

So i changed the above line to

my $desc = $cgi->param('comment ') =~ m/(.+)/ ? $1 :'';

is it correct???

Now error is not comming but the query insert function is not working..

But when i'm assigning the $desc with some string directly..then the query insert function is working properly..

Can anyone plz help me to solve this problem..

Thanks in advance
Kokul
Jul 20 '07 #1
3 1599
KevinADC
4,059 Recognized Expert Specialist
it looks like it should work, but try like this and see if it helps:

Expand|Select|Wrap|Line Numbers
  1. my $desc = '';
  2. if ($cgi->param('comment') =~ m/(.+)/) {
  3.    $desc = $1;
  4. }
but really the regexp is not making $desc secure in any meaningful way because you are just accepting whatever value it has. But maybe you're just trying to get the syntax correct for right now.
Jul 20 '07 #2
kokul
8 New Member
it looks like it should work, but try like this and see if it helps:

Expand|Select|Wrap|Line Numbers
  1. my $desc = '';
  2. if ($cgi->param('comment') =~ m/(.+)/) {
  3.    $desc = $1;
  4. }
but really the regexp is not making $desc secure in any meaningful way because you are just accepting whatever value it has. But maybe you're just trying to get the syntax correct for right now.
Dear Kevin,

The above code is working... But it takes only the first line from the text box. I want to take all the lines. How can i do it??
Dec 14 '07 #3
KevinADC
4,059 Recognized Expert Specialist
add the "s" modifier to the end of the regexp:

Expand|Select|Wrap|Line Numbers
  1. if ($cgi->param('comment') =~ m/(.+)/s) {
Dec 14 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

1
5710
by: Sammy | last post by:
Hi, I'm working on my first real-world C++ project where all hard-coded messages (lots of them) are "#define" in a header file. These strings are used to be encapsulated into event that send to different system. What is the proper way to store these messages ? Is there a framework out there that help to do this, is a "logging" framework such as log4cpp helpful? Thank a lot, /Sammy...the junior programmer :-)
3
11244
by: micmic | last post by:
Deear all experts, In the MySQL, we can use escape character '\' to save the STRING WITH single quote into database (eg. we would like to insert into table "tbl_ABC"with the string ab'c, we can use the following SQL query to insert into database : Insert into tbl_ABC VALUES ('ab\'c'); ). Also there is some functions in mySQL api so that we can save the single quote into MySql database using C programme. But it seems that i cannot do...
5
1299
by: Simon Harvey | last post by:
Hi everyone, As I understand it, storing an applications SQL Server connection string in the web.config file is a security risk. I'm wondering then, what the simplest solution is to this problem? Actually, my first question is, why is it a security risk? As I understand it, it is impossible to download the web.config file. Is this not the case? I've heard of a number of potential solutions to this problem - storing
6
1323
by: Perin | last post by:
Hi, I am using SQL Server as a Database in my ASP.NET application. Can anyone tell me, how to store my connection string in web.config file and access it from my application. It is very urgent please.. -- Perin
9
34655
by: vijetha | last post by:
Hi, I have been trying to store a string into a vector but I am not able to figure out how to do it. I am able to use vectors for storing integers but not able to use them fro strings. I want to be able to convert vector to string and vice versa. Cheers, Vijetha
8
2455
by: Gary | last post by:
When you declare an array of chars and store a string in it, where is the position of the null character \0? And what happens to the unused memory locations? #include <stdio.h> int main(void) { char gstring2 = "dudes"; gstring2 = 'a'; printf("%s \n", gstring2);
0
9656
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9498
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10373
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10177
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10118
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9969
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6750
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5403
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4074
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.