search for: csf

Displaying 20 results from an estimated 31 matches for "csf".

Did you mean: cs
2011 Jan 12
0
Fail2Ban & CSF
Hello list, anyone knows if fail2ban works together with CSF (http://www.configserver.com/cp/csf.html) ?? I use CSF for blocking port scanning and blocking of IP-adresses. I wonder if fail2ban will overwrite rules in iptables of CSF and vica versa. Kind regards, Jonas. -------------- next part -------------- An HTML attachment was scrubbed... URL: <ht...
2004 Jun 22
0
prcomp & eigenvectors
I have the following situation I want to analyse with prcomp. Each subject has a curve called the contrast sensitivity function (CSF). This curve's overall shape is due to the additive output of 3 "channels" (eigenvectors). #this shows 3 SF channels; net CSF = c1 + c2+c3 x<-1:100 c1<-dnorm(x,mean=20,sd=20) c2<-dnorm(x,mean=50,sd=20) c3<-dnorm(x,mean=80,sd=20) s1<-1;s2<-1;s3<-1 net<-c1*s1...
2020 May 23
1
fail2ban setup centos 7 not picking auth fail?
Just to add another alternative while we're discussing the subject, I've got a soft spot for CSF as a replacement for fail2ban, and it has a lot of additional features as well. https://www.configserver.com/cp/csf.html P. On 22/05/2020 18.32, Jerry wrote: > On Thu, 21 May 2020 23:22:04 -0700, lists stated: >> I use SSHGuard on well ssh (doh!), but supposedly you can use it for &...
2000 Jul 17
4
Message not deliverable
A non-text attachment was scrubbed... Name: Text Item Type: application/octet-stream Size: 22015 bytes Desc: Unknown data type Url : http://lists.samba.org/archive/samba/attachments/20000717/d81c1f66/TextItem.obj
2008 May 13
8
static private and multi-inherit
/*author:csf178-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org*/ function Class(Initalizer,SuperClasses) { if(!SuperClasses)SuperClasses=[]; var ret=function(){ for(var i=0;i<SuperClasses.length;i++) { SuperClasses[i].call(this); } var $private={}; var $public=this; var $static=ret; with($stati...
2012 Dec 04
3
Read.csv
Hi list, I am using read.csv to read data from csf files, but noticed that the numeric data (those larger than 10 power 9) are rounded to the nearest million (10 power 6). Any solution? Thanks Arvin -- Sent from my mobile device
2008 Apr 29
2
Do I need portmap, haldeamon & xfs running on dom0?
Hi all I have a CentOS 5.1 server running Xen and recently installed ConfigServer Firewall (CSF) on the main node to give it some protection. On a daily basis I''m getting an email about portmap. haldeamon and xfs consumming too much resources. The main node, dom0 doesn''t even do anything, and everything is done on the domU''s Here''s a thread I''v...
2010 Jul 28
22
ACPI-Tables corrupted?
...1) (XEN) ACPI: BERT BF7CA237, 0030 (r1 PTL WHEAPTL 60000 PTL 1) (XEN) ACPI: SSDT BF7CA267, 00E1 (r1 wheaos wheaosc 60000 INTL 20050624) (XEN) ACPI: ERST BF7CA348, 0270 (r1 PTL WHEAPTL 60000 PTL 1) (XEN) ACPI: SSDT BF7CA5B8, 009E (r1 FSC CST_PR00 60000 CSF 1) (XEN) ACPI: SSDT BF7CA656, 009E (r1 FSC CST_PR02 60000 CSF 1) (XEN) ACPI: SSDT BF7CA6F4, 009E (r1 FSC CST_PR04 60000 CSF 1) (XEN) ACPI: SSDT BF7CA792, 009E (r1 FSC CST_PR06 60000 CSF 1) (XEN) ACPI: SSDT BF7CA830, 015B (r1 FSC PST_PR00 60000...
2019 Sep 25
1
Spam Blocking by filtering on username / id
...d on what it finds in the logs. I was intending to do something more proactive, at the dovecot layer, and ideally just silently drop them. Or throw the attempts into a different log perhaps. Just thinking out loud at this point. For the sake of completeness, there's also my personal favourite, CSF, which in my opinion does a better job than fail2ban, but still not exactly what I envisaged. > you can add username_filter = *@domain.com > or deny-passdb before actual passdb with username_filter = !*@domain.com > https://doc.dovecot.org/configuration_manual/authentication/password_dat...
2012 Feb 19
1
Please may you help me setup VPS
...with a strong password as well. - disable root remotely access. - use secure connection to the VPS by using PUTTY key instead of username and password login . - change the port to a high one with unusual figure like 26127 or any else - disable ftp and use another secure one. - install a fire wall, CSF firewall and Mod_security or anything else equal or more. - keep the whole thing up-to-date. - secure the whole VPS as much as possible. - finally use a trusted script on the website and his why I will use Drupal (mostly the core ones and nothing else without any modules). This is what I've...
2020 May 22
4
fail2ban setup centos 7 not picking auth fail?
I use SSHGuard on well ssh (doh!), but supposedly you can use it for postfix and dovecot also. I can tell you it is well supported. I am on Centos 7 using firewalld. ? Original Message ? From: adi at ddns.com.au Sent: May 21, 2020 11:01 PM To: voytek at sbt.net.au Cc: dovecot at dovecot.org Subject: Re: fail2ban setup centos 7 not picking auth fail? On 22-05-2020 15:45, Voytek Eymont
2008 Dec 09
1
creating standard curves for ELISA analysis
Hello R guru's I am a newbie to R, In my research work I usually generate a lot of ELISA data in form of absorbance values. I ususally use Excel to calculate the concentrations of unknown, but it is too tedious and manual especially when I have 100's of files to process. I would appreciate some help in creating a R script to do this with minimal manual input. s A1-G1 and A2-G2 are
2020 Jul 06
2
Re: [PATCH nbdkit 2/2] tar: Rewrite the tar plugin (again), this time in C.
...; + .pread = tar_pread, > + .pwrite = tar_pwrite, > + .errno_is_preserved = 1, No .extents makes sense if the tar file does not record sparseness, but may be needed if we support sparse tar files. $ truncate --size=1M large $ echo 'hi' >> large $ tar cSf f.tar large $ ls -l large f.tar -rw-rw-r--. 1 eblake eblake 10240 Jul 6 13:57 f.tar -rw-rw-r--. 1 eblake eblake 1048579 Jul 6 13:48 large $ LANG=C tar --no-auto-compress -tRvf f.tar large block 0: -rw-rw-r-- eblake/eblake 1048579 2020-07-06 13:48 large block 2: ** Block of NULs ** Yep, we need...
2014 Dec 29
2
Looking for company behind serverhostingcenter.com and directhostingcenter.com for causing problems on dir.xiph.org
Hi Thomas, directhostingcenter.com: Registrant Organization: Internet and Computer Services, LLC (LINK WhoIs) Tim Wood = Owner - Internet and Computer Services, LLC (LINK LinkedIn) Also: LINK, press WEBMASTER, mail address = timwood at timwood.net Perhaps this is the one you are looking for. Best regards, Maarten Van: Thomas B. R?cker Verzonden: ?maandag? ?29? ?december? ?2014
2019 Apr 19
0
faI2ban detecting and banning but nothing happens
I find csf/lfd much easier to configure and can be used in combination with fail2ban. Gary Stainburn <gary.stainburn at ringways.co.uk> wrote: >I've followed one of the pages on line specifically for installing fail2ban on >Centos 7 and all looks fine. > >I've added a fail regex t...
2009 May 04
1
dom0 iptables
...dom0. Obviously thats not an option. I have tried these two rules, but no difference: iptables -I INPUT 1 -d 207.xxx.xxx.0/30 -j ACCEPT iptables -I OUTPUT 1 -s 207.xxx.xxx.0/30 -j ACCEPT Any recommendations? I am running CentOS as the dom0 and an hoping to be able to continue to use my CSF firewall script, but at this point, if I can only get help with iptables, thats fine as well. Thanks, Mark _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2008 Apr 02
0
tdbsam allow users to change password without notice!!!
...= 0 ; map to guest = never create mask = 0777 nt acl support = no time server = yes ; enable privileges = yes passdb backend = tdbsam username map = /etc/samba/smbusers ---------------------------------------------------- Cracow Screen Festival (CSF) Krak?w, 2-4 maja 2008 Koncerty oraz sztuka videografii w przestrzeni miejskiej! Bryan Ferry, Underworld, The Raveonettes, Mattafix http://klik.wp.pl/?adr=http%3A%2F%2Fcorto.www.wp.pl%2Fas%2Fkrakow_festiwal.html&sid=296
2009 Aug 13
2
randomForest question--problem with ntree
...machine and our linux system running 2.8 and 2.9. Sample code follws. Thanks in advance for help. Mary > m1<-as.formula(paste("as.factor(EAD)~", paste(names(clin_b)[c(5,7,10:36 )], collapse="+"))) > m1 as.factor(EAD) ~ R_AGE + R_BMI + ASCITES...1L. + EOTAXIN + GM.CSF + IFNa + IL.10 + IL.12.p40.p70 + IL.13 + IL.15 + IL.17 + IL.2 + IL.4 + IL.5 + IL.6 + IL.7 + IL.8 + IL1.RA + IL2.R + IP.10 + MCP.1 + MIG + MIP.1a + MIP.1b + RANTES + TNFa + Male + diagnosis + race > > > > > set.seed(12345) > rF.bsl<-randomForest(m1, data=...
2014 Dec 29
0
Looking for company behind serverhostingcenter.com and directhostingcenter.com for causing problems on dir.xiph.org
...ful when perusing a search engine, even if you try forced grouping and other tricks. > Tim Wood = Owner - Internet and Computer Services, LLC (LINK LinkedIn > <https://www.linkedin.com/pub/tim-wood/85/3a3/1ba>) > Also: LINK > <http://mail.directhostingcenter.com/how-to-install-csf-and-lfd>, > press WEBMASTER, mail address = timwood at timwood.net > <mailto:timwood at timwood.net> > > Perhaps this is the one you are looking for. > That looks like the best shot so far, thanks for finding that missing link. I'll email that guy. If anyone else has...
2019 Sep 23
4
Spam Blocking by filtering on username / id
This is probably quite an easy question, but I haven't been able to find the answer. I'm running a server where all the email addresses are in the format "user at domain.com". I've noticed that a large number of fake login attempts use the format "user" eg. reception, service, root, admin. Is it possible to prevent any such logins to these email users without an