| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 98,101
» Latest member: ee88biz1
» Forum threads: 2,426
» Forum posts: 11,371
Full Statistics
|
| Online Users |
There are currently 1602 online users. » 0 Member(s) | 1599 Guest(s) Applebot, Bing, Google
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
09-11-2026, 09:49 PM
» Replies: 1
» Views: 189
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 154
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 169
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 472
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 241
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 642
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 225
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,240
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 358
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 984
|
|
|
| MS Exchange IMAP4 login failed |
|
Posted by: Boba TC - 10-13-2022, 04:54 PM - Forum: Indy
- Replies (2)
|
 |
Dear Reader;
yesterday (October 12, 2022) all attempts to login/connect to MS Exchange server with TIdIMAP4 failed because MS has dropped support for IMAP4.
What options do I have for my old projects written with VCL2009 and Indy10? TIA. Boba.
|
|
|
| Intrawbe and IOT |
|
Posted by: Alain.verdier - 10-13-2022, 11:59 AM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
Hello,
I have a little question :
I developed an application with Intraweb+boostrap which works perfectly, now I have to add the taking into account of "device" of the IOT type
These are sensors controlled by a microcontroller (ESP32) which communicate through wifi.
Each microcontroller is considered as a “node”, this “node” sends at regular intervals a “Json packet” which contains the values of the different sensors, in the form:
String address = String("http://") + String(host) + String("/vsc/data/mc");
http. begin(customer, address);
http.addHeader("Content-Type", "application/json");
int httpCode = http.POST(postData);
What I am trying to do is retrieve this frame in order to be able to store it and update the display of the current web page which contains the widgets corresponding to the values contained in this frame.
For the update of the page, I use a script which is in the html of the page, for example
source.addEventListener('new_readings', function(e) {
console.log("new_readings", e.data);
var obj = JSON.parse(e.data);
document.getElementById("mvolts").innerHTML = obj.mvolts;
document.getElementById("lvolts").innerHTML = obj.lvolts;
document.getElementById("afr").innerHTML = obj.afr;
}, false);
I don't know what is the solution to use for the reception of this frame, create a "Contenthandler" as in the example "dyncontenthandler"? Or use another solution?
Thank you for your time
Alain
|
|
|
| SSL/TLS: BREACH attack against HTTP compression |
|
Posted by: pgnair - 10-11-2022, 03:34 AM - Forum: IntraWeb General Discussion
- Replies (6)
|
 |
Kindly assist to resolve the below issue.
I am using the version 15.2.62
'SSL/TLS connections are vulnerable to the 'BREACH' (Browser Reconnaissance & Exfiltration via Adaptive Compression of Hypertext) attack.Angelo Prado Neal Harris and Yoel Gluck reported that SSL/TLS attacks are still viable via a 'BREACH' (Browser Reconnaissance & Exfiltration via Adaptive Compression of Hypertext) attack which they describe as: While CRIME was mitigated by disabling TLS/SPDY compression (and by modifying gzip to allow for explicit separation of compression contexts in SPDY) BREACH attacks HTTP responses. These are compressed using the common HTTP compression which is much more common than TLS-level compression. This allows essentially the same attack demonstrated by Duong and Rizzo but without relying on TLS-level compression (as they anticipated). It is important to note that the attack is agnostic to the version of TLS/SSL and does not require TLS-layer compression. Additionally the attack works against any cipher suite. Against a stream cipher the attack is simpler: The difference in sizes across response bodies is much more granular in this case. If a block cipher is used additional work must be done to align the output to the cipher text blocks.The flaw makes it easier for man-in-the-middle attackers to obtain plaintext secret values.'
Recommendation:
Mitigation The following mitigation possibilities are available: 1. Disabling HTTP compression 2. Separating secrets from user input 3. Randomizing secrets per request 4. Masking secrets (effectively randomizing by XORing with a random secret per request) 5. Protecting vulnerable pages with CSRF 6. Length hiding (by adding random number of bytes to the responses) 7. Rate-limiting the requests Note: The mitigations are ordered by effectiveness (not by their practicality - as this may differ from one application to another).
|
|
|
| RAD 11.2 compile error |
|
Posted by: ozelaya - 10-08-2022, 06:44 PM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
Hi,
I'm triying to compile using RAD 11.2 and get the following error message . [dcc64 Fatal Error] ICSWebCtrlPanel.dpr(80): F2051 Unit IWMime was compiled with a different version of InCoder.TIdEncoder.EncodeString
Any Hints?
Thanks in advance,
Omar Zelaya
|
|
|
| Intraweb-15, Web App Timing Out Issue |
|
Posted by: robhercarloz - 09-30-2022, 04:56 PM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
I run my project which starts the server controller that will host my web application. I then try to access my web application in the browser or through my phones browser, and I get the message "Your session has expired due to inactivity.".
Is there someone that can point me in the right direction trying to debug this?
|
|
|
| A small bug in 15.2.56 |
|
Posted by: sonjli - 09-30-2022, 10:21 AM - Forum: IntraWeb General Discussion
- Replies (5)
|
 |
I have a TIWText component called MyText.
I do
-- Any ASYNC event (for example OnAsyncClick of a TIWButton)
MyText.Text := 'My awesome text';
-- End of Any ASYNC event
The first time I see rendered the text 'My awesome text'.
If I run again the ASYNC event (I click again on the button), the TIWText does render nothing. Empty HTML.
If I use this workaround
-- Any ASYNC event (for example OnAsyncClick of a TIWButton)
MyText.Lines.Clear;
MyText.Lines.Add('My very beautiful text');
-- End of Any ASYNC event
Then everything work great.
Tried in 15.2.56 (D11.2), no other versions.
Thanks,
Eddy
|
|
|
|