forked from jsa2/CloudShellAadApps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClient2.js
258 lines (175 loc) · 6.02 KB
/
Client2.js
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
var {graph, graphList, graphOwner, graphExtended} = require('./src/graphf')
const fs = require('fs')
const {argv} = require('yargs')
module.exports={main}
async function main (token) {
var gRsponse2=[]
var firstop = 'oauth2PermissionGrants'
await graphList(token,firstop, undefined, gRsponse2).catch((error) => {
console.log(error)
})
fs.writeFileSync(`${firstop}.json`,JSON.stringify(gRsponse2))
var users = new Set(gRsponse2.map(user => user.principalId))
//console.log(users)
var usersProm = []
var usersList = []
users.forEach((user) => {
if(user !== null) {
usersProm.push(
graph(token,`users/${user}`).catch((error) => {
console.log(error)
}).then((user) => {
usersList.push(user)
})
)
}
})
await Promise.all(usersProm)
fs.writeFileSync('users.json',JSON.stringify(usersList))
//Apps begin here
var gRsponse1=[]
var firstop = 'applications'
await graphList(token,firstop, undefined, gRsponse1).catch((error) => {
console.log(error)
})
fs.writeFileSync(`${firstop}-save.json`,JSON.stringify(gRsponse1))
let AppProxyApps
if (argv.appProxyApps) {
let proxArra = []
gRsponse1.filter( proxyApp => proxyApp?.web?.logoutUrl !== null).filter(s => s.web?.logoutUrl.toLowerCase().match('appproxy=logout') )
.forEach(prx => {
proxArra.push( graphExtended(token,`applications/${prx.id}?$select=onPremisesPublishing,appId`) )
})
AppProxyApps = await Promise.all(proxArra)
}
var appArra =[]
var appList = []
var burstCount = 40
var i = 0
for await (app of gRsponse1) {
i++
console.log(i)
if (i % burstCount == 0) {
await waitT(1000)
}
console.log('checking', app.appId)
appArra.push(
graphOwner(token, `applications/${app.id}/owners`, app.appId).catch((error) => {
console.log('error', error)
}).then((data) => {
if (data?.userPrincipalName?.length > 0) {
if(data.appId == "dca4e297-f238-4e84-93f1-f443ace5adc9") {
console.log('mat')
}
console.log('pushing to', data.appId)
appList.push({
appId: data.appId,
userPrincipalName: data.userPrincipalName.map((item) => {
return item.userPrincipalName
})
})
}
})
)
}
await Promise.all(appArra)
//Apps end here
fs.writeFileSync(`${firstop}.json`,JSON.stringify(appList))
var gRsponse=[]
var firstop = 'servicePrincipals'
await graphList(token,firstop, undefined, gRsponse).catch((error) => {
console.log(error)
})
// Map owners to SPN here
gRsponse.map((item) => {
item.owners = appList.find((app) => {
item.owners = []
if (app.appId == item.appId) {
return item.owners = app.userPrincipalName
}
})
if (item.owners?.appId) {
delete item.owners.appId
}
//console.log(item.owners)
})
gRsponse.map((item) => {
if (!item.owners) {
item.owners=[]
}
})
if (argv.appProxyApps) {
gRsponse.map(app => {
app.onPremisesPublishing = AppProxyApps.find( s => s.appId == app.appId)?.onPremisesPublishing || null
if (app.onPremisesPublishing) {
console.log('sd')
}
})
}
let arr4 = []
let samlApps = []
// Get saml Apps
i = 0
let SAMLCheck = gRsponse.filter(app => app?.preferredSingleSignOnMode == "saml" )
for await (samlApp of SAMLCheck) {
i++
console.log(i)
if (i % 5 == 0) {
await waitT(1000)
}
arr4.push( graphExtended(token,`serviceprincipals/${samlApp.id}?$select=notificationEmailAddresses,keyCredentials,id`).then(data => {
console.log(data)
samlApps.push(data)
}).catch(error => console.log(error?.response?.data)) )
}
await Promise.all(arr4)
gRsponse.map(app => {
app.samlSettings = samlApps.find( s => s.id == app.id) || null
if (app.samlSettings) {
console.log('sd')
}
})
fs.writeFileSync(`${firstop}.json`,JSON.stringify(gRsponse))
var promArra = []
var spnList = []
function waitT (ms) {
return new Promise((resolve) => {
setTimeout(() => {
resolve('waited')
}, ms);
}
)
}
var burstCount = 50
var i = 0
for await (spn of gRsponse) {
i ++
console.log(i)
if (i % burstCount == 0) {
await waitT(1000)
}
promArra.push(
graph(token,`servicePrincipals/${spn.id}/appRoleAssignedTo`).catch((error) => {
console.log('error',error)
}).then((data) => {
if (data?.length > 0) {
console.log(data)
data.forEach((item) => spnList.push(item))
}
})
)
}
/* gRsponse.forEach((spn) => {
promArra.push(
graph(token,`servicePrincipals/${spn.id}/appRoleAssignedTo`).catch((error) => {
console.log('error',error)
}).then((data) => {
if (data?.length > 0) {
data.forEach((item) => spnList.push(item))
}
})
)
}) */
await Promise.all(promArra)
fs.writeFileSync(`roles.json`,JSON.stringify(spnList))
}