Displaying 20 results from an estimated 4192 matches for "2024".
Did you mean:
2004
2024 Feb 08
1
round.Date and trunc.Date not working / implemented
...extMethod(), oldClass(x))
}
<environment: namespace:base>
we see that it defers to the next method here, which is the built-in
one. The built-in one, only accepts 'digits', which does nothing for
digits >= 0. For digits < 0, it rounds to power of ten, e.g.
> date
[1] "2024-02-08"
> round(date, digits = 0)
[1] "2024-02-08"
> round(date, digits = 1)
[1] "2024-02-08"
> round(date, digits = 2)
[1] "2024-02-08"
> round(date, digits = -1)
[1] "2024-02-07"
> round(date, digits = -2)
[1] "2024-03-18"
>...
2024 May 29
0
nginx security advisory (CVE-2024-31079, CVE-2024-32760, CVE-2024-34161, CVE-2024-35200)
Hello!
Four security issues were identified in nginx HTTP/3 implementation, which
might allow an attacker that uses a specially crafted QUIC session to cause
a worker process crash (CVE-2024-31079, CVE-2024-32760, CVE-2024-35200),
worker process memory disclosure on systems with MTU larger than 4096
bytes (CVE-2024-34161), or might have potential other impact (CVE-2024-31079,
CVE-2024-32760).
The issues affect nginx compiled with the experimental ngx_http_v3_module
(not compiled by de...
2024 May 29
0
nginx security advisory (CVE-2024-31079, CVE-2024-32760, CVE-2024-34161, CVE-2024-35200)
Hello!
В реализации HTTP/3 в nginx были обнаружены четыре проблемы, которые
позволяют атакующему с помощью специально созданной QUIC-сессии вызвать
падение рабочего процесса (CVE-2024-31079, CVE-2024-32760, CVE-2024-35200),
отправку клиенту части содержимого памяти рабочего процесса на системах
с MTU больше 4096 байт (CVE-2024-34161), а также потенциально могут иметь
другие последствия (CVE-2024-31079, CVE-2024-32760).
Проблемам подвержен nginx, если он собран с экспериментальн...
2024 Jan 26
1
permission denied with windows acls
On 1/26/24 09:34, Peter Carlson via samba wrote:
>
> On 1/26/24 02:35, Rowland Penny via samba wrote:
>> On Thu, 25 Jan 2024 18:45:52 -0800 Peter Carlson via samba
>> <samba at lists.samba.org> wrote:
>>> The share mounts and I am a member of the correct groups
>>> CARLSON\peter at u2gui:~$ cat /etc/fstab //fs.carlson.lab/test
>>> /mnt/test cifs
>>> credentials=/root/sm...
2024 Feb 08
1
round.Date and trunc.Date not working / implemented
?s 14:36 de 08/02/2024, Olivier Benz via R-devel escreveu:
>> On 8 Feb 2024, at 15:15, Martin Maechler <maechler at stat.math.ethz.ch> wrote:
>>
>>>>>>> Ji?? Moravec
>>>>>>> on Wed, 7 Feb 2024 10:23:15 +1300 writes:
>>
>>> This is my first tim...
2024 Mar 01
1
Bad SMB2 (sign_algo_id=1) signature for message
Hi!
I'm seeing quite some messages in log.smbd like this:
[2024/03/01 15:59:00.612141, 0, pid=1778617] libcli/smb/smb2_signing.c:639(smb2_signing_check_pdu)
Bad SMB2 (sign_algo_id=1) signature for message
[2024/03/01 15:59:00.612146, 0, pid=1778616] lib/util/util.c:578(dump_data)
[0000] 7E 8D E3 FE A9 44 E8 E3 A6 76 22 6A B2 A4 27 CF ~....D.. .v&quo...
2024 Mar 29
2
Output of tapply function as data frame: Problem Fixed
Dear Rui,
Thanks again for resolving this. I have already started using the version
that works for me.
But to clarify the second part, please let me paste the what I did and the
error message:
> set.seed(2024)
> data <- data.frame(
+ Date = sample(seq(Sys.Date() - 5, Sys.Date(), by = "1 days"), 100L,
+ TRUE),
+ count = sample(10L, 100L, TRUE)
+ )
>
> # coerce tapply's result to class "data.frame"
> res <- with(data, tapply(count, Date, mean)) |> as.data...
2003 Aug 22
0
rootkit
I ran chkrootkit and this is what I got.
should I worry or is this normal?
I'm running 4.8
thanks.
Checking `wted'... 3 deletion(s) between Sat Jun 26 18:10:21 2027 and Sun
Mar 24 04:27:12 2024
4 deletion(s) between Sun Mar 24 04:27:12 2024 and Sun Mar 24 04:27:12 2024
5 deletion(s) between Sun Mar 24 04:27:12 2024 and Sun Mar 24 04:27:12 2024
1 deletion(s) between Sun Mar 24 04:27:12 2024 and Sun Mar 24 04:27:12 2024
1 deletion(s) between Sun Mar 24 04:27:12 2024 and Sun Mar 24 04:27:12...
2024 Mar 29
1
Output of tapply function as data frame: Problem Fixed
?s 01:43 de 29/03/2024, Ogbos Okike escreveu:
> Dear Rui,
> Thanks again for resolving this. I have already started using the version
> that works for me.
>
> But to clarify the second part, please let me paste the what I did and the
> error message:
>
>> set.seed(2024)
>> data <- da...
2024 Feb 08
1
round.Date and trunc.Date not working / implemented
This is a workaround, and could be the basis for a round.Date improvement:
date <- Sys.Date()
as.Date(round(as.POSIXct(date), "years"))
as.Date(round(as.POSIXct(Sys.Date() + 180), "years"))
Duncan Murdoch
On 08/02/2024 12:23 p.m., Henrik Bengtsson wrote:
> Technically, there is a round() for 'Date' objects, but it doesn't
> seem very useful, because it basically just fall back to the default
> round() method, which only takes the 'digits' argument.
>
> Here's an example:
&g...
2024 Jan 26
1
permission denied with windows acls
On 1/26/24 02:35, Rowland Penny via samba wrote:
> On Thu, 25 Jan 2024 18:45:52 -0800 Peter Carlson via samba
> <samba at lists.samba.org> wrote:
>> The share mounts and I am a member of the correct groups
>> CARLSON\peter at u2gui:~$ cat /etc/fstab //fs.carlson.lab/test /mnt/test
>> cifs credentials=/root/smbcreds,multiuser,sec=ntlmssp,_...
2024 May 22
2
OpenSSH server doesn't log client disconnect without SSH_MSG_DISCONNECT
On Tue, 21 May 2024, Opty wrote:
> Hello,
>
> can anyone confirm that OpenSSH server doesn't log client disconnect
> without SSH_MSG_DISCONNECT?
OpenSSH logs the disconnection regardless of whether the client sends
SSH_MSG_DISCONNECT or just drops the connection.
A little more information may be lo...
2017 Jul 08
4
force port redirection for list of users
Hi ,
I have the following requirement .
other than following users, any other user sshd connection should be
redirected to 2024 instead of port 22.
root, ftp, guest
So
ssh root at ip // should be sent to sshd running at port 22
ssh otheruser at ip // should be sent to sshd running at port 2024
I know that we can do something like this:
ssh -o ProxyCommand='ssh -W localhost:2024 cliuser at ip' otheruser@
<s...
2017 Jul 18
2
force port redirection for list of users
...aff.uni-marburg.de> wrote:
>
> > Am 08.07.2017 um 18:41 schrieb Sudarshan Soma <sudarshan12s at gmail.com>:
> >
> > Hi ,
> > I have the following requirement .
> > other than following users, any other user sshd connection should be
> > redirected to 2024 instead of port 22.
> > root, ftp, guest
> >
> > So
> > ssh root at ip // should be sent to sshd running at port 22
> > ssh otheruser at ip // should be sent to sshd running at port 2024
> >
> >
> > I know that we can do something like this:
> &...
2024 Feb 08
2
round.Date and trunc.Date not working / implemented
> On 8 Feb 2024, at 15:15, Martin Maechler <maechler at stat.math.ethz.ch> wrote:
>
>>>>>> Ji?? Moravec
>>>>>> on Wed, 7 Feb 2024 10:23:15 +1300 writes:
>
>> This is my first time working with dates, so if the answer is "Duh, work
>> with POSI...
2024 May 22
1
OpenSSH server doesn't log client disconnect without SSH_MSG_DISCONNECT
On Wed, May 22, 2024 at 6:29?AM Damien Miller <djm at mindrot.org> wrote:
> OpenSSH logs the disconnection regardless of whether the client sends
> SSH_MSG_DISCONNECT or just drops the connection.
>
> A little more information may be logged from the disconnect packet
> if it was sent, but there sho...
2024 Oct 08
1
sshd fails when using cryptodev-linux to compute hmac
...dled event 12
Looking at the ioctl logging from cryptodev-linux, I can see that a session ID is being closed (CIOCFSESSION) before an attempt is made to copy from it (CIOCCPHASH). As you can see, crypto_destroy_session was called before a crypto_copy_hash_state for the same SID (0x9198779A):
....
2024-10-08T18:52:23.314088+00:00 debug kernel: [ 1206.105427] cryptodev: sshd-session[2108] (cryptodev_ioctl:960): Got CIOCFSESSION
2024-10-08T18:52:23.314104+00:00 debug kernel: [ 1206.105473] cryptodev: sshd-session[2109] (crypto_destroy_session:372): Removed session 0x9198779A
2024-10-08T18:52:23.314...
2024 Sep 25
1
Could not convert sid S-0-0
Here are the lines of the winbind.log justs after a restart of winbind:
[2024/09/25 07:32:24.878544,? 1]
../../source3/winbindd/wb_lookupsid.c:102(wb_lookupsid_recv)
? Failed with STATUS_SOME_UNMAPPED.
[2024/09/25 07:32:41.921563,? 0]
../../source3/winbindd/winbindd_dual.c:1964(winbindd_sig_term_handler)
? Got sig[15] terminate (is_parent=1)
[2024/09/25 07:32:42.042654,?...
2024 Jun 15
1
Users appears as SID instead of their own name.
On Sat, 15 Jun 2024 12:52:10 +0200
Josep Maria Gorro via samba <samba at lists.samba.org> wrote:
> Helo Rowland.
>
> I think I won't be able to thank you enough for everything you are
> doing for me.
>
> I've tried and seems to run fine. But finally it throws an error and
> perfo...
2024 Jun 08
1
Fwd: Two DNS issues with samba
...R: /usr/local/samba/var/run/winbindd
NTP_SIGND_SOCKET_DIR: /usr/local/samba/var/lib/ntp_signd
- DNS Backend Bind (BIND 9.18.18-0ubuntu0.22.04.2-Ubuntu)
- SysVol is in sync with rsync
### ERROR ### /var/log/syslog
root at 01-dc01:~# tail -f /var/log/syslog
Jun 8 11:54:11 01-dc01 samba[931]: [2024/06/08 11:54:11.351034, 0]
../../lib/util/util_runcmd.c:355(samba_runcmd_io_handler)
Jun 8 11:54:11 01-dc01 samba[931]:
/usr/local/samba/sbin/samba_dnsupdate: Traceback (most recent call last):
Jun 8 11:54:11 01-dc01 samba[931]: [2024/06/08 11:54:11.352082, 0]
../../lib/util/util_runcmd.c:355(s...