-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFind_Priv_User.R
55 lines (44 loc) · 2.28 KB
/
Find_Priv_User.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#This could probably be better implemented but it works so take it or leave it or improve it and leave comments
#Change the setwd to where your list of files are located
#Change the inputfiles list to the files named in the directory
#The outputfile will drop newly created files in the directory specified by setwd
#Created and last updated by Tyler Williams 20180504.v2
# :{
old <- Sys.time()
setwd("")
inputfiles = c("file1.csv","file2.csv","file3.csv")
for(inputfile in inputfiles){
rich <- "Enriched_"
outputfile = paste(rich,inputfile)
CSV_read_in <- read.csv(file=inputfile, stringsAsFactors = FALSE)
#CSV_read_in <- na.omit(CSV_read_in)
#CSV_read_in[is.na(CSV_read_in)] <- 0
#CSV_read_in <- na.omit(CSV_read_in)
CSV_read_in$PrivledgedConfidence <- 0
CSV_read_in$ServiceConfidence <- 0
new <- Sys.time() - old
print(new)
x <- grep("svc|service|admin|administrator",CSV_read_in$MemberOf, ignore.case = TRUE)
for(rn in 1:length(x))CSV_read_in$PrivledgedConfidence[x[rn]] <- 1
y <- grep("svc|service|admin|administrator|\\.sa|\\.oa|\\.da|\\.ea",CSV_read_in$UserPrincipalName, ignore.case = TRUE)
for(rn in 1:length(x))CSV_read_in$PrivledgedConfidence[y[rn]] <- 1
z <- (grep("TRUE",CSV_read_in$TrustedForDelegation))
for(rn in 1:length(z))CSV_read_in$PrivledgedConfidence[z[rn]] <- 1
xx <- (grep("svc|service|admin|administrator|\\.sa|\\.oa|\\.da|\\.ea",CSV_read_in$SamAccountName, ignore.case = TRUE))
for(rn in 1:length(xx))CSV_read_in$PrivledgedConfidence[xx[rn]] <- 1
yy <- (grep("svc|service|admin|administrator",CSV_read_in$DistinguishedName, ignore.case = TRUE))
for(rn in 1:length(yy))CSV_read_in$PrivledgedConfidence[yy[rn]] <- 1
a <- grep("svc|service",CSV_read_in$MemberOf, ignore.case = TRUE)
for(rn in 1:length(x))CSV_read_in$ServiceConfidence[a[rn]] <- 1
b <- grep("svc|service|\\.sa",CSV_read_in$UserPrincipalName, ignore.case = TRUE)
for(rn in 1:length(x))CSV_read_in$ServiceConfidence[b[rn]] <- 1
d <- (grep("svc|service|\\.sa",CSV_read_in$SamAccountName, ignore.case = TRUE))
for(rn in 1:length(xx))CSV_read_in$ServiceConfidence[d[rn]] <- 1
e <- (grep("svc|service",CSV_read_in$DistinguishedName, ignore.case = TRUE))
for(rn in 1:length(yy))CSV_read_in$ServiceConfidence[e[rn]] <- 1
print(Sys.time())
write.csv(CSV_read_in,outputfile, row.names = FALSE)
new <- Sys.time() - old
print(new)
}
print(new)