473,768 Members | 3,985 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

C dubits on a post at bugtraq


while i read bugtraq i see this post:
Mailing-List: contact bu**********@se curityfocus.com; run by ezmlm
Precedence: bulk
List-Id: <bugtraq.list-id.securityfocu s.com>
List-Post: <mailto:bu***** @securityfocus. com>
List-Help: <mailto:bu***** *****@securityf ocus.com>
List-Unsubscribe: <mailto:bu***** ************@se curityfocus.com >
List-Subscribe: <mailto:bu***** **********@secu rityfocus.com>
Date: 27 Apr 2006 08:24:25 -0000
Message-ID: <20************ ************@se curityfocus.com >
Content-Type: text/plain
Content-Disposition: inline
Content-Transfer-Encoding: binary
MIME-Version: 1.0
X-Mailer: MIME-tools 5.411 (Entity 5.404)
From: th*****@echo.or .id
Subject: BL4's SMTP server BufferOverflow Vulnerable
Organization : Newsgate at muc.de e.V.
Newsgroups: muc.lists.bugtr aq
Path: reader4.news.ti n.it!spool.news .tin.it!feeder. news.tin.it!82. 182.32.53.MISMA TCH!usenet.ath. cx!news.ispa.de !newsfeed.freen et.de!ecngs!fee der2.ecngs.de!n ews.osn.de!diab lo2.news.osn.de !news.belwue.de !news-peer.in.tum.de! news.muc.de!new sgate.muc.de!no t-for-mail
Approved: ne********@muc. de
X-Newsgate-CVS-Id: $Id: newsgate.pl,v 1.9 2003/07/21 20:04:07 ag Exp ag $
Distribution : world
Lines: 138
Xref: reader4.news.ti n.it muc.lists.bugtr aq:12117

---------------------------------------------------------------------------
[ECHO_ADV_30$200 6] BL4's SMTP server BufferOverflow Vulnerable
---------------------------------------------------------------------------

Author : Dedi Dwianto
Date : April, 27th 2006
Location : Indonesia, Jakarta
Web : http://advisories.echo.or.id/adv/adv30-theday-2006.txt
Critical Lvl : High
---------------------------------------------------------------------------

Affected software description:
~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~
Application : BL4's SMTP server
version : < 0.1.5
URL : http://bl4qkubartnndfhr.emmeya.com/prog/smtp?0
Description :

BL4's SMTP server is an inbound only SMTP server.
It currently uses hardcoded values for handling email.
The SMTP server puts the incoming email into various text files.

---------------------------------------------------------------------------

Vulnerabilit y:
~~~~~~~~~~~~~~ ~~
BL4's SMTP server is to a flaw that can allow remote attacker to
cause a denial of service or a attacker can Execution of Arbitrary Code.
The vulnerability is due to a buffer overflow in the SMTP service.
A remote attacker can repeatedly send more that 2100 bytes as the
argument to the HELO, MAIL FROM, and RCPT TO commands
to crash the server.

------------------think.c-----------------------------------
...........
{
slaveEmail[x]->isData = 0;
slaveEmail[x]->emailFrom = 0;
slaveEmail[x]->emailTo = 0;
free(buffer);
buffer = malloc(sizeof(c har) * 12);
sprintf(buffer, "250 OK\r\n");
return buffer;
}
free(buffer);
.............
slaveEmail[x]->EHLO = buffer;
slaveEmail[x]->EHLOtrue = 1;

buffer = malloc(sizeof(c har) * 12);
sprintf(buffer, "250 OK\r\n");
return buffer;
-----------------------------------------------------------
--
sprintf(buffer, "250 OK\r\n");
--
Vulnerable for format strings.
if buffer!=0 where are or what are here "Vulnerable for format
strings"
if buffer==0 this should segfault or write nothing
--
free(buffer);
buffer = malloc(sizeof(c har) * 12);
--
Vulnerable for buffer overflow.
same here
A attacker can create Arbitrary Code here .


i don't understand how can execute "Arbitrary Code"
May 3 '06 #1
4 2131
RSoIsCaIrLiIoA a écrit :
while i read bugtraq i see this post:

Mailing-List: contact bu**********@se curityfocus.com; run by ezmlm
Precedence: bulk
List-Id: <bugtraq.list-id.securityfocu s.com>
List-Post: <mailto:bu***** @securityfocus. com>
List-Help: <mailto:bu***** *****@securityf ocus.com>
List-Unsubscribe: <mailto:bu***** ************@se curityfocus.com >
List-Subscribe: <mailto:bu***** **********@secu rityfocus.com>
Date: 27 Apr 2006 08:24:25 -0000
Message-ID: <20************ ************@se curityfocus.com >
Content-Type: text/plain
Content-Disposition: inline
Content-Transfer-Encoding: binary
MIME-Version: 1.0
X-Mailer: MIME-tools 5.411 (Entity 5.404)
From: th*****@echo.or .id
Subject: BL4's SMTP server BufferOverflow Vulnerable
Organizatio n: Newsgate at muc.de e.V.
Newsgroups: muc.lists.bugtr aq
Path: reader4.news.ti n.it!spool.news .tin.it!feeder. news.tin.it!82. 182.32.53.MISMA TCH!usenet.ath. cx!news.ispa.de !newsfeed.freen et.de!ecngs!fee der2.ecngs.de!n ews.osn.de!diab lo2.news.osn.de !news.belwue.de !news-peer.in.tum.de! news.muc.de!new sgate.muc.de!no t-for-mail
Approved: ne********@muc. de
X-Newsgate-CVS-Id: $Id: newsgate.pl,v 1.9 2003/07/21 20:04:07 ag Exp ag $
Distributio n: world
Lines: 138
Xref: reader4.news.ti n.it muc.lists.bugtr aq:12117

---------------------------------------------------------------------------
[ECHO_ADV_30$200 6] BL4's SMTP server BufferOverflow Vulnerable
---------------------------------------------------------------------------

Author : Dedi Dwianto
Date : April, 27th 2006
Location : Indonesia, Jakarta
Web : http://advisories.echo.or.id/adv/adv30-theday-2006.txt
Critical Lvl : High
---------------------------------------------------------------------------

Affected software description:
~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~
Application : BL4's SMTP server
version : < 0.1.5
URL : http://bl4qkubartnndfhr.emmeya.com/prog/smtp?0
Description :

BL4's SMTP server is an inbound only SMTP server.
It currently uses hardcoded values for handling email.
The SMTP server puts the incoming email into various text files.

---------------------------------------------------------------------------

Vulnerability :
~~~~~~~~~~~~~ ~~~
BL4's SMTP server is to a flaw that can allow remote attacker to
cause a denial of service or a attacker can Execution of Arbitrary Code.
The vulnerability is due to a buffer overflow in the SMTP service.
A remote attacker can repeatedly send more that 2100 bytes as the
argument to the HELO, MAIL FROM, and RCPT TO commands
to crash the server.

------------------think.c-----------------------------------
...........
{
slaveEmail[x]->isData = 0;
slaveEmail[x]->emailFrom = 0;
slaveEmail[x]->emailTo = 0;
free(buffer);
buffer = malloc(sizeof(c har) * 12);
sprintf(buffer, "250 OK\r\n");
return buffer;
}
free(buffer);
.............
slaveEmail[x]->EHLO = buffer;
slaveEmail[x]->EHLOtrue = 1;

buffer = malloc(sizeof(c har) * 12);
sprintf(buffer, "250 OK\r\n");
return buffer;
-----------------------------------------------------------
--
sprintf(buffer, "250 OK\r\n");
--
Vulnerable for format strings.

if buffer!=0 where are or what are here "Vulnerable for format
strings"
if buffer==0 this should segfault or write nothing

--
free(buffer);
buffer = malloc(sizeof(c har) * 12);
--
Vulnerable for buffer overflow.

same here

A attacker can create Arbitrary Code here .

i don't understand how can execute "Arbitrary Code"


Are you sure that that is the code that is in question?

I do not see any buffer overflow either
May 3 '06 #2
RSoIsCaIrLiIoA wrote:
while i read bugtraq i see this post:
Mailing-List: contact bu**********@se curityfocus.com; run by ezmlm
Precedence: bulk
List-Id: <bugtraq.list-id.securityfocu s.com>
List-Post: <mailto:bu***** @securityfocus. com>
List-Help: <mailto:bu***** *****@securityf ocus.com>
List-Unsubscribe: <mailto:bu***** ************@se curityfocus.com >
List-Subscribe: <mailto:bu***** **********@secu rityfocus.com>
Date: 27 Apr 2006 08:24:25 -0000
Message-ID: <20************ ************@se curityfocus.com >
Content-Type: text/plain
Content-Disposition: inline
Content-Transfer-Encoding: binary
MIME-Version: 1.0
X-Mailer: MIME-tools 5.411 (Entity 5.404)
From: th*****@echo.or .id
Subject: BL4's SMTP server BufferOverflow Vulnerable
Organization: Newsgate at muc.de e.V.
Newsgroups: muc.lists.bugtr aq
Path: reader4.news.ti n.it!spool.news .tin.it!feeder. news.tin.it!82. 182.32.53.MISMA TCH!usenet.ath. cx!news.ispa.de !newsfeed.freen et.de!ecngs!fee der2.ecngs.de!n ews.osn.de!diab lo2.news.osn.de !news.belwue.de !news-peer.in.tum.de! news.muc.de!new sgate.muc.de!no t-for-mail
Approved: ne********@muc. de
X-Newsgate-CVS-Id: $Id: newsgate.pl,v 1.9 2003/07/21 20:04:07 ag Exp ag $
Distribution: world
Lines: 138
Xref: reader4.news.ti n.it muc.lists.bugtr aq:12117

---------------------------------------------------------------------------
[ECHO_ADV_30$200 6] BL4's SMTP server BufferOverflow Vulnerable
---------------------------------------------------------------------------

Author : Dedi Dwianto
Date : April, 27th 2006
Location : Indonesia, Jakarta
Web : http://advisories.echo.or.id/adv/adv30-theday-2006.txt
Critical Lvl : High
---------------------------------------------------------------------------

Affected software description:
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
Application : BL4's SMTP server
version : < 0.1.5
URL : http://bl4qkubartnndfhr.emmeya.com/prog/smtp?0
Description :

BL4's SMTP server is an inbound only SMTP server.
It currently uses hardcoded values for handling email.
The SMTP server puts the incoming email into various text files.

---------------------------------------------------------------------------

Vulnerability:
~~~~~~~~~~~~~~~ ~
BL4's SMTP server is to a flaw that can allow remote attacker to
cause a denial of service or a attacker can Execution of Arbitrary Code.
The vulnerability is due to a buffer overflow in the SMTP service.
A remote attacker can repeatedly send more that 2100 bytes as the
argument to the HELO, MAIL FROM, and RCPT TO commands
to crash the server.

------------------think.c-----------------------------------
...........
{
slaveEmail[x]->isData = 0;
slaveEmail[x]->emailFrom = 0;
slaveEmail[x]->emailTo = 0;
free(buffer);
buffer = malloc(sizeof(c har) * 12);
sprintf(buffer, "250 OK\r\n");
return buffer;
}
free(buffer);
.............
slaveEmail[x]->EHLO = buffer;
slaveEmail[x]->EHLOtrue = 1;

buffer = malloc(sizeof(c har) * 12);
sprintf(buffer, "250 OK\r\n");
return buffer;
-----------------------------------------------------------
--
sprintf(buffer, "250 OK\r\n");
--
Vulnerable for format strings.


if buffer!=0 where are or what are here "Vulnerable for format
strings"
if buffer==0 this should segfault or write nothing

Not necessarily. If the attacker can form just the right size string
containing the right chars, it is possible to write bytes beyond the
buffer into some other memory. It depends on the platform, and runtime
environment how exactly such a program will behave.
--
free(buffer);
buffer = malloc(sizeof(c har) * 12);
--
Vulnerable for buffer overflow.


same here
A attacker can create Arbitrary Code here .


i don't understand how can execute "Arbitrary Code"


Without looking too close, it appears this is a reference typical stack
smashing attacks. Overwrite a buffer with the right variety and number
of bytes and you can execute that data as "arbitrary code".

Now, I'm no expert on black-hat hacking, but my understanding is that it
is typical when reviewing code for security holes that one looks long
and hard at naive uses of sprintf(), strcpy() and friends.
May 3 '06 #3
void * clvrmnky() a écrit :
RSoIsCaIrLiIoA wrote:
while i read bugtraq i see this post:
Mailing-List: contact bu**********@se curityfocus.com; run by ezmlm
Precedence: bulk
List-Id: <bugtraq.list-id.securityfocu s.com>
List-Post: <mailto:bu***** @securityfocus. com>
List-Help: <mailto:bu***** *****@securityf ocus.com>
List-Unsubscribe: <mailto:bu***** ************@se curityfocus.com >
List-Subscribe: <mailto:bu***** **********@secu rityfocus.com>
Date: 27 Apr 2006 08:24:25 -0000
Message-ID: <20************ ************@se curityfocus.com >
Content-Type: text/plain
Content-Disposition: inline
Content-Transfer-Encoding: binary
MIME-Version: 1.0
X-Mailer: MIME-tools 5.411 (Entity 5.404)
From: th*****@echo.or .id
Subject: BL4's SMTP server BufferOverflow Vulnerable
Organization: Newsgate at muc.de e.V.
Newsgroups: muc.lists.bugtr aq
Path:
reader4.news.ti n.it!spool.news .tin.it!feeder. news.tin.it!82. 182.32.53.MISMA TCH!usenet.ath. cx!news.ispa.de !newsfeed.freen et.de!ecngs!fee der2.ecngs.de!n ews.osn.de!diab lo2.news.osn.de !news.belwue.de !news-peer.in.tum.de! news.muc.de!new sgate.muc.de!no t-for-mail

Approved: ne********@muc. de
X-Newsgate-CVS-Id: $Id: newsgate.pl,v 1.9 2003/07/21 20:04:07 ag Exp
ag $
Distribution: world
Lines: 138
Xref: reader4.news.ti n.it muc.lists.bugtr aq:12117

---------------------------------------------------------------------------

[ECHO_ADV_30$200 6] BL4's SMTP server BufferOverflow Vulnerable
---------------------------------------------------------------------------
Author : Dedi Dwianto
Date : April, 27th 2006
Location : Indonesia, Jakarta
Web : http://advisories.echo.or.id/adv/adv30-theday-2006.txt
Critical Lvl : High
---------------------------------------------------------------------------
Affected software description:
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
Application : BL4's SMTP server
version : < 0.1.5
URL : http://bl4qkubartnndfhr.emmeya.com/prog/smtp?0
Description :

BL4's SMTP server is an inbound only SMTP server.
It currently uses hardcoded values for handling email. The SMTP
server puts the incoming email into various text files.

---------------------------------------------------------------------------
Vulnerability:
~~~~~~~~~~~~~~~ ~
BL4's SMTP server is to a flaw that can allow remote attacker to
cause a denial of service or a attacker can Execution of Arbitrary Code.
The vulnerability is due to a buffer overflow in the SMTP service. A
remote attacker can repeatedly send more that 2100 bytes as the
argument to the HELO, MAIL FROM, and RCPT TO commands to crash the
server.

------------------think.c-----------------------------------
...........
{
slaveEmail[x]->isData = 0;
slaveEmail[x]->emailFrom = 0;
slaveEmail[x]->emailTo = 0;
free(buffer);
buffer = malloc(sizeof(c har) * 12);
sprintf(buffer, "250 OK\r\n");
return buffer;
}
free(buffer);
.............
slaveEmail[x]->EHLO = buffer;
slaveEmail[x]->EHLOtrue = 1;

buffer = malloc(sizeof(c har) * 12);
sprintf(buffer, "250 OK\r\n"); return
buffer;
-----------------------------------------------------------
--
sprintf(buffer, "250 OK\r\n");
--
Vulnerable for format strings.

if buffer!=0 where are or what are here "Vulnerable for format
strings"
if buffer==0 this should segfault or write nothing


Not necessarily. If the attacker can form just the right size string
containing the right chars, it is possible to write bytes beyond the
buffer into some other memory. It depends on the platform, and runtime
environment how exactly such a program will behave.
--
free(buffer);
buffer = malloc(sizeof(c har) * 12);
--
Vulnerable for buffer overflow.

same here
A attacker can create Arbitrary Code here .

i don't understand how can execute "Arbitrary Code"

Without looking too close, it appears this is a reference typical stack
smashing attacks. Overwrite a buffer with the right variety and number
of bytes and you can execute that data as "arbitrary code".

Now, I'm no expert on black-hat hacking, but my understanding is that it
is typical when reviewing code for security holes that one looks long
and hard at naive uses of sprintf(), strcpy() and friends.


BUT
buffer = malloc(sizeof(c har) * 12);
sprintf(buffer, "250 OK\r\n");


That can never overflow!

There are no % directives in that sprintf call, so it is the same as an
strcpy(buffer," 250 OK\r\n"); The character string has 8 positions, 9
with the terminating zero. That fits easily into 12 bytes.

Now, if the malloc fails, that should provoke UB maybe a trap. But
writing to the address zero is a well known stuff, unlikely to be of any
use to a hacker.
May 3 '06 #4
void * clvrmnky() wrote:
RSoIsCaIrLiIoA wrote:
while i read bugtraq i see this post:
Mailing-List: contact bu**********@se curityfocus.com; run by ezmlm
Precedence: bulk
List-Id: <bugtraq.list-id.securityfocu s.com>
List-Post: <mailto:bu***** @securityfocus. com>
List-Help: <mailto:bu***** *****@securityf ocus.com>
List-Unsubscribe: <mailto:bu***** ************@se curityfocus.com >
List-Subscribe: <mailto:bu***** **********@secu rityfocus.com>
Date: 27 Apr 2006 08:24:25 -0000
Message-ID: <20************ ************@se curityfocus.com >
Content-Type: text/plain
Content-Disposition: inline
Content-Transfer-Encoding: binary
MIME-Version: 1.0
X-Mailer: MIME-tools 5.411 (Entity 5.404)
From: th*****@echo.or .id
Subject: BL4's SMTP server BufferOverflow Vulnerable
Organization: Newsgate at muc.de e.V.
Newsgroups: muc.lists.bugtr aq
Path:
reader4.news.ti n.it!spool.news .tin.it!feeder. news.tin.it!82. 182.32.53.MISMA TCH!usenet.ath. cx!news.ispa.de !newsfeed.freen et.de!ecngs!fee der2.ecngs.de!n ews.osn.de!diab lo2.news.osn.de !news.belwue.de !news-peer.in.tum.de! news.muc.de!new sgate.muc.de!no t-for-mail

Approved: ne********@muc. de
X-Newsgate-CVS-Id: $Id: newsgate.pl,v 1.9 2003/07/21 20:04:07 ag Exp
ag $
Distribution: world
Lines: 138
Xref: reader4.news.ti n.it muc.lists.bugtr aq:12117

---------------------------------------------------------------------------

[ECHO_ADV_30$200 6] BL4's SMTP server BufferOverflow Vulnerable
---------------------------------------------------------------------------
Author : Dedi Dwianto
Date : April, 27th 2006
Location : Indonesia, Jakarta
Web : http://advisories.echo.or.id/adv/adv30-theday-2006.txt
Critical Lvl : High
---------------------------------------------------------------------------
Affected software description:
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
Application : BL4's SMTP server
version : < 0.1.5
URL : http://bl4qkubartnndfhr.emmeya.com/prog/smtp?0
Description :

BL4's SMTP server is an inbound only SMTP server.
It currently uses hardcoded values for handling email. The SMTP
server puts the incoming email into various text files.

---------------------------------------------------------------------------
Vulnerability:
~~~~~~~~~~~~~~~ ~
BL4's SMTP server is to a flaw that can allow remote attacker to
cause a denial of service or a attacker can Execution of Arbitrary Code.
The vulnerability is due to a buffer overflow in the SMTP service. A
remote attacker can repeatedly send more that 2100 bytes as the
argument to the HELO, MAIL FROM, and RCPT TO commands to crash the
server.

------------------think.c-----------------------------------
...........
{
slaveEmail[x]->isData = 0;
slaveEmail[x]->emailFrom = 0;
slaveEmail[x]->emailTo = 0;
free(buffer);
buffer = malloc(sizeof(c har) * 12);
sprintf(buffer, "250 OK\r\n");
return buffer;
}
free(buffer);
.............
slaveEmail[x]->EHLO = buffer;
slaveEmail[x]->EHLOtrue = 1;

buffer = malloc(sizeof(c har) * 12);
sprintf(buffer, "250 OK\r\n"); return
buffer;
-----------------------------------------------------------
--
sprintf(buffer, "250 OK\r\n");
--
Vulnerable for format strings.


if buffer!=0 where are or what are here "Vulnerable for format
strings"
if buffer==0 this should segfault or write nothing

Not necessarily. If the attacker can form just the right size string
containing the right chars, it is possible to write bytes beyond the
buffer into some other memory. It depends on the platform, and runtime
environment how exactly such a program will behave.
--
free(buffer);
buffer = malloc(sizeof(c har) * 12);
--
Vulnerable for buffer overflow.


same here
A attacker can create Arbitrary Code here .


i don't understand how can execute "Arbitrary Code"


Without looking too close, it appears this is a reference typical stack
smashing attacks. Overwrite a buffer with the right variety and number
of bytes and you can execute that data as "arbitrary code".

Now, I'm no expert on black-hat hacking, but my understanding is that it
is typical when reviewing code for security holes that one looks long
and hard at naive uses of sprintf(), strcpy() and friends.


.... and of course, upon closer inspection of this code snippet I see no
obvious ways of leveraging these particular naive uses of sprintf() to
do so.

Nothing to see here. Move along.
May 3 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
2465
by: Spud | last post by:
<?php // pullpage function by Nick bouton http://www.nickbouton.com/. $CustomerID = "IDHERE"; $method = "POST"; $host = "xml.mydata.com"; $usepath = "/xml.asp"; //print all vars in an array
1
1851
by: Alec | last post by:
Hi All, I have recently built a site using PHP and MySQL, and started to implement a basic forum into it. However, the form to post messages doesnt do what I want it to. If there is no user logged in (ie no session) then it posts the message fine. But if there is a user logged in, it loads my login.php page instead of my post.php page??? Code for both pages below: >>>>>>>>>READ.PHP>>>>>>>>>
5
3972
by: Michael Foord | last post by:
I'm receiving POST data to a CGI, which I'd like to forward to another CGI using urllib2. I have two options - 1) Parse the data using cgi.FieldStorage() and then rebuild the POST request into a dictionary - including any files (? uploading files by urllib2 untested and undocumented - examples seem to be for httplib). 2) Read the whole POST data in using sys.stdin.read(), rebuild the
2
14055
by: Erik Johnson | last post by:
I am trying to work with a program that is trying make an HTTP POST of text data without any named form parameter. (I don't know - is that a normal thing to do?) I need to write a CGI program that accepts and processes that data. I'm not seeing how to get at data that's not a named form parameter. I wrote a simple CGI program to echo a string representation of the cgi.FieldStorage class that's recevied, and one to make an HTTP POST to it...
15
3131
by: Thomas Scheiderich | last post by:
I am trying to understand Session variables and ran into a question on how they work with data that is passed. I have an HTM file that calls an ASP file and sends the name either by GET or POST. When I find is that if I send the value by the GET method, response.write("From QueryString: " & Request.QueryString("usernamefromform") & "<br><br>")
0
1844
by: Hans Forbrich | last post by:
Section 1. Ballot: ------------------- 1.YES NO: I agree that there should be a periodic post describing the newsgroup charter and providing a FAQ on newsgroup usage. 2.MONTHLY BI-WEEKLY WEEKLY: The post should be transmitted with this frequency.
0
1826
by: Hans Forbrich | last post by:
Section 1. Ballot: ------------------- 1.YES NO: I agree that there should be a periodic post describing the newsgroup charter and providing a FAQ on newsgroup usage. 2.MONTHLY BI-WEEKLY WEEKLY: The post should be transmitted with this frequency.
2
3277
by: Keith Selbee | last post by:
I am trying to submit data to a webpage in the form of a post and my code is below. It is a function that takes a url and the post content as strings and then performs the post. But as soon as I add the post data to the headers I get an exception that just says "headers". Can anyone please help me here? Thanks.... public string Get(string u, string c) { WebRequest wr = WebRequest.Create(u); wr.Headers.Add(c);
2
12561
by: Matt | last post by:
When we submit the form data to another page, we usually do the following: <form action="display.aspx" method="post"> will submit the form data and open display.asp in the current browser <form action="display.aspx" method="post" target="_blank"> will submit the form data and open display.asp in a new browser
0
10175
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
10017
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...
0
9843
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
8840
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5283
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...
0
5425
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3932
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
2
3534
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2808
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.